python3Packages.pyxnat: add missing six dependency

This commit is contained in:
Martin Weinelt
2021-05-07 11:31:35 -07:00
committed by Jonathan Ringer
parent 6eef66f4c8
commit e35cbc0bdb
@@ -5,6 +5,7 @@
, nose , nose
, lxml , lxml
, requests , requests
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@@ -17,7 +18,11 @@ buildPythonPackage rec {
sha256 = "22524120d744b50d25ef6bfc7052637e4ead9e2afac92563231ec89848f5adf5"; sha256 = "22524120d744b50d25ef6bfc7052637e4ead9e2afac92563231ec89848f5adf5";
}; };
propagatedBuildInputs = [ lxml requests ]; propagatedBuildInputs = [
lxml
requests
six
];
# future is not used, and pathlib is installed part of python38+ # future is not used, and pathlib is installed part of python38+
# w/o an external package # w/o an external package