python3Packages.stopit: added setuptools dependency (#234153)

This commit is contained in:
eyJhb 2023-05-26 15:32:47 +02:00 committed by GitHub
parent c9ff452fd2
commit dd6d95536c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,8 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -15,6 +17,10 @@ buildPythonPackage rec {
hash = "sha256-uXJUA70JOGWT2NmS6S7fPrTWAJZ0mZ/hICahIUzjfbw="; hash = "sha256-uXJUA70JOGWT2NmS6S7fPrTWAJZ0mZ/hICahIUzjfbw=";
}; };
propagatedBuildInputs = [
setuptools # for pkg_resources
];
pythonImportsCheck = [ "stopit" ]; pythonImportsCheck = [ "stopit" ];
meta = with lib; { meta = with lib; {