From dd6d95536c97aa40d139f69e47a3854ef76c76f5 Mon Sep 17 00:00:00 2001 From: eyJhb Date: Fri, 26 May 2023 15:32:47 +0200 Subject: [PATCH] python3Packages.stopit: added setuptools dependency (#234153) --- pkgs/development/python-modules/stopit/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/stopit/default.nix b/pkgs/development/python-modules/stopit/default.nix index 66f7aadf236..7fdb46764e6 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; {