summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-02-18 19:32:00 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-02-18 20:07:42 +0100
commit3439d916086f78fbddbfc8a2733036638a6dd638 (patch)
tree3fae393c99edaff0f80c2d23a6893631786a2e4a /pkgs/development/python-modules
parent57edb26a608f4b55552e6a79a0a2dc5acca1bcd7 (diff)
downloadnixlib-3439d916086f78fbddbfc8a2733036638a6dd638.tar
nixlib-3439d916086f78fbddbfc8a2733036638a6dd638.tar.gz
nixlib-3439d916086f78fbddbfc8a2733036638a6dd638.tar.bz2
nixlib-3439d916086f78fbddbfc8a2733036638a6dd638.tar.lz
nixlib-3439d916086f78fbddbfc8a2733036638a6dd638.tar.xz
nixlib-3439d916086f78fbddbfc8a2733036638a6dd638.tar.zst
nixlib-3439d916086f78fbddbfc8a2733036638a6dd638.zip
pathpy fixup
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/path.py/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/path.py/default.nix b/pkgs/development/python-modules/path.py/default.nix
index 28da198bd265..53754fd3dc29 100644
--- a/pkgs/development/python-modules/path.py/default.nix
+++ b/pkgs/development/python-modules/path.py/default.nix
@@ -5,6 +5,7 @@
 , pytestrunner
 , pytest
 , glibcLocales
+, packaging
 }:
 
 buildPythonPackage rec {
@@ -17,8 +18,8 @@ buildPythonPackage rec {
     sha256 = "16134e5b287aba4a4125a6722e7837cf2a149fccc5000c500ae6c71a5525488b";
   };
 
-  checkInputs = [ pytest pytestrunner ];
-  buildInputs = [setuptools_scm glibcLocales ];
+  checkInputs = [ pytest pytestrunner glibcLocales packaging ];
+  buildInputs = [ setuptools_scm ];
 
   LC_ALL="en_US.UTF-8";