diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2021-05-07 20:12:49 +0200 |
|---|---|---|
| committer | Jonathan Ringer <jonringer@users.noreply.github.com> | 2021-05-07 11:31:35 -0700 |
| commit | e35cbc0bdb48c68f93cc682c67ecbb3b0f5f77a3 (patch) | |
| tree | 8050b76a392797ccf78496000fc21011185ac188 /pkgs/development/python-modules/pyxnat | |
| parent | dwl: 0.2 -> 0.2.1 (diff) | |
| download | nixpkgs-e35cbc0bdb48c68f93cc682c67ecbb3b0f5f77a3.tar.gz | |
python3Packages.pyxnat: add missing six dependency
Diffstat (limited to 'pkgs/development/python-modules/pyxnat')
| -rw-r--r-- | pkgs/development/python-modules/pyxnat/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyxnat/default.nix b/pkgs/development/python-modules/pyxnat/default.nix index 87f6b9756ed3..a72b46037753 100644 --- a/pkgs/development/python-modules/pyxnat/default.nix +++ b/pkgs/development/python-modules/pyxnat/default.nix @@ -5,6 +5,7 @@ , nose , lxml , requests +, six }: buildPythonPackage rec { @@ -17,7 +18,11 @@ buildPythonPackage rec { sha256 = "22524120d744b50d25ef6bfc7052637e4ead9e2afac92563231ec89848f5adf5"; }; - propagatedBuildInputs = [ lxml requests ]; + propagatedBuildInputs = [ + lxml + requests + six + ]; # future is not used, and pathlib is installed part of python38+ # w/o an external package |
