Unverified Commit 3ba3a674 authored by TomaSajt's avatar TomaSajt
Browse files

aws-mfa: use pyproject = true

parent 047ab026
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -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
  ];