Merge pull request #162281 from drperceptron/cerberus_bugfix

pythonPackages.cerberus: missing propagated build input
This commit is contained in:
Fabian Affolter 2022-03-01 10:08:33 +01:00 committed by GitHub
commit 35bf89edf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
}:
@ -15,6 +16,10 @@ buildPythonPackage rec {
sha256 = "03kj15cf1pbd11mxsik96m5w1m6p0fbdc4ia5ihzmq8rz28razpq";
};
propagatedBuildInputs = [
setuptools
];
checkInputs = [
pytestCheckHook
];