pythonPackages.pulp: fix by adding new dependency amply

This commit is contained in:
Robert Scott 2020-09-13 13:23:13 +01:00
parent c305f3fac3
commit 26e023bfa7

View File

@ -2,6 +2,7 @@
, fetchPypi , fetchPypi
, buildPythonPackage , buildPythonPackage
, pyparsing , pyparsing
, amply
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,7 +14,7 @@ buildPythonPackage rec {
sha256 = "9d8ecf532868cc31fa9ff59ee5d5b2049600c5c902c18c794a2bad677c1f92e5"; sha256 = "9d8ecf532868cc31fa9ff59ee5d5b2049600c5c902c18c794a2bad677c1f92e5";
}; };
propagatedBuildInputs = [ pyparsing ]; propagatedBuildInputs = [ pyparsing amply ];
# only one test that requires an extra # only one test that requires an extra
doCheck = false; doCheck = false;