aws-mfa: use pyproject = true

This commit is contained in:
TomaSajt
2024-05-07 10:42:43 +02:00
parent 047ab026fc
commit 3ba3a67444

View File

@@ -2,13 +2,14 @@
, buildPythonApplication
, fetchFromGitHub
, fetchpatch
, setuptools
, boto3
}:
buildPythonApplication rec {
pname = "aws-mfa";
version = "0.0.12";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "broamski";
@@ -26,7 +27,11 @@ buildPythonApplication rec {
})
];
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
boto3
];