summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorUli Baum <xeji@cat3.de>2018-09-13 17:25:38 +0200
committerUli Baum <xeji@cat3.de>2018-09-13 17:25:38 +0200
commit781eaa13775b0c2aa457295fe08491dbd0d5a0dc (patch)
tree7872f6844c59db7f4a8e803520640c7e226a0b4c /pkgs/development/python-modules
parent9e4b0b795cf83f33e0edc4a0e8fcf60c63f05903 (diff)
downloadnixlib-781eaa13775b0c2aa457295fe08491dbd0d5a0dc.tar
nixlib-781eaa13775b0c2aa457295fe08491dbd0d5a0dc.tar.gz
nixlib-781eaa13775b0c2aa457295fe08491dbd0d5a0dc.tar.bz2
nixlib-781eaa13775b0c2aa457295fe08491dbd0d5a0dc.tar.lz
nixlib-781eaa13775b0c2aa457295fe08491dbd0d5a0dc.tar.xz
nixlib-781eaa13775b0c2aa457295fe08491dbd0d5a0dc.tar.zst
nixlib-781eaa13775b0c2aa457295fe08491dbd0d5a0dc.zip
pythonPackages.flask-pymongo: fix build
add missing dependency: vcversioner
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/Flask-PyMongo/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/Flask-PyMongo/default.nix b/pkgs/development/python-modules/Flask-PyMongo/default.nix
index 862fd84c4921..7c37bdaddd51 100644
--- a/pkgs/development/python-modules/Flask-PyMongo/default.nix
+++ b/pkgs/development/python-modules/Flask-PyMongo/default.nix
@@ -2,6 +2,7 @@
 , fetchPypi
 , flask
 , pymongo
+, vcversioner
 , lib
 , pytest
 }:
@@ -18,17 +19,17 @@ buildPythonPackage rec {
   checkInputs = [ pytest ];
 
   checkPhase = ''
-    py.test tests
+    py.test
   '';
 
   # Tests seem to hang
   doCheck = false;
 
-  propagatedBuildInputs = [ flask pymongo ];
+  propagatedBuildInputs = [ flask pymongo vcversioner ];
 
   meta = {
     homepage = "http://flask-pymongo.readthedocs.org/";
     description = "PyMongo support for Flask applications";
     license = lib.licenses.bsd2;
   };
-}
\ No newline at end of file
+}