pythonPackages.cerberus: missing propagated build input

This commit is contained in:
Dr Perceptron 2022-03-01 11:39:39 +11:00
parent 15e2aa70d2
commit 0caffbdff4
No known key found for this signature in database
GPG Key ID: 95EB6DFF26D1CEB0

View File

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