lol

python3Packages.stopit: added setuptools dependency (#234153)

authored by

eyJhb and committed by
GitHub
dd6d9553 c9ff452f

+6
+6
pkgs/development/python-modules/stopit/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , setuptools 5 + 4 6 }: 5 7 6 8 buildPythonPackage rec { ··· 14 16 rev = version; 15 17 hash = "sha256-uXJUA70JOGWT2NmS6S7fPrTWAJZ0mZ/hICahIUzjfbw="; 16 18 }; 19 + 20 + propagatedBuildInputs = [ 21 + setuptools # for pkg_resources 22 + ]; 17 23 18 24 pythonImportsCheck = [ "stopit" ]; 19 25