Merge pull request #308878 from anthonyroussel/fix/aws-encryption-sdk-cli
aws-encryption-sdk-cli: fix build
This commit is contained in:
commit
ae468e8bfe
1 changed files with 7 additions and 2 deletions
|
@ -26,13 +26,18 @@ in
|
||||||
localPython.pkgs.buildPythonApplication rec {
|
localPython.pkgs.buildPythonApplication rec {
|
||||||
pname = "aws-encryption-sdk-cli";
|
pname = "aws-encryption-sdk-cli";
|
||||||
version = "4.1.0";
|
version = "4.1.0";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-OCbt0OkDVfpzUIogbsKzaPAle2L6l6N3cmZoS2hEaSM=";
|
hash = "sha256-OCbt0OkDVfpzUIogbsKzaPAle2L6l6N3cmZoS2hEaSM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with localPython.pkgs; [
|
build-system = with localPython.pkgs; [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = with localPython.pkgs; [
|
||||||
attrs
|
attrs
|
||||||
aws-encryption-sdk
|
aws-encryption-sdk
|
||||||
base64io
|
base64io
|
||||||
|
@ -45,7 +50,7 @@ localPython.pkgs.buildPythonApplication rec {
|
||||||
nativeCheckInputs = with localPython.pkgs; [
|
nativeCheckInputs = with localPython.pkgs; [
|
||||||
mock
|
mock
|
||||||
pytest-mock
|
pytest-mock
|
||||||
pytestCheckHook
|
pytest7CheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTestPaths = [
|
disabledTestPaths = [
|
||||||
|
|
Loading…
Reference in a new issue