diff options
author | Cody Hiar <cody@hiar.ca> | 2023-06-14 10:04:16 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2023-06-14 10:04:16 -0600 |
commit | 5704dd54a14e3a53c86dc4c332107b0dbe98a371 (patch) | |
tree | 96da575b097a005b85b19c19955d35c29a28b430 /nix | |
parent | 05a4f3acc316776ebee115390c94b8d2f7d6714c (diff) |
propagate setuptools for flake8-isort
Diffstat (limited to 'nix')
-rw-r--r-- | nix/flake8-isort.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nix/flake8-isort.nix b/nix/flake8-isort.nix index bb4a12c..7182af6 100644 --- a/nix/flake8-isort.nix +++ b/nix/flake8-isort.nix @@ -7,5 +7,6 @@ buildPythonPackage rec { inherit pname version; sha256 = "sha256-U39FOmYNfpA/YC7Po2E2sUDeJ531jQLrG2oMhOg8Uow="; }; + propagatedBuildInputs = with python3Packages; [ setuptools ]; checkInputs = with python3Packages; [ flake8 isort pytest ]; } |