pythonPackages.ecdsa: add six dependency

This commit is contained in:
Jonathan Ringer 2019-12-20 08:31:45 -08:00 committed by Frederik Rietdijk
parent 63f26bc748
commit e27bf33c25

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pkgs
, six
}:
buildPythonPackage rec {
@ -13,6 +14,7 @@ buildPythonPackage rec {
sha256 = "64c613005f13efec6541bb0a33290d0d03c27abab5f15fbab20fb0ee162bdd8e";
};
propagatedBuildInputs = [ six ];
# Only needed for tests
checkInputs = [ pkgs.openssl ];