summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-05-26 09:34:58 -0400
committerGitHub <noreply@github.com>2023-05-26 09:34:58 -0400
commit0827d32976933f03f1cb462a20462acae47003e1 (patch)
tree46dcd7627f0c676d5d7e49a0e5fc225a53e315e7
parentMerge pull request #234218 from NixOS/backport-221861-to-release-23.05 (diff)
downloadnixpkgs-0827d32976933f03f1cb462a20462acae47003e1.tar.gz
python3Packages.stopit: added setuptools dependency (#234224)
(cherry picked from commit dd6d95536c97aa40d139f69e47a3854ef76c76f5)
-rw-r--r--pkgs/development/python-modules/stopit/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/stopit/default.nix b/pkgs/development/python-modules/stopit/default.nix
index 66f7aadf236c..7fdb46764e6b 100644
--- a/pkgs/development/python-modules/stopit/default.nix
+++ b/pkgs/development/python-modules/stopit/default.nix
@@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
+, setuptools
+
}:
buildPythonPackage rec {
@@ -15,6 +17,10 @@ buildPythonPackage rec {
hash = "sha256-uXJUA70JOGWT2NmS6S7fPrTWAJZ0mZ/hICahIUzjfbw=";
};
+ propagatedBuildInputs = [
+ setuptools # for pkg_resources
+ ];
+
pythonImportsCheck = [ "stopit" ];
meta = with lib; {