about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cookiecutter
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-04-04 20:04:41 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:34:53 +0200
commit3a18d042f2b7765ad6c2d9ec7d3478627eed971d (patch)
treec8e8359eaebfc4aae3b82da67fa476a8247122de /pkgs/development/python-modules/cookiecutter
parent68bc584f5f25762dd95720be6594e4154e634dae (diff)
python: cookiecutter: 1.4.0 -> 1.6.0
Diffstat (limited to 'pkgs/development/python-modules/cookiecutter')
-rw-r--r--pkgs/development/python-modules/cookiecutter/default.nix18
1 files changed, 12 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/cookiecutter/default.nix b/pkgs/development/python-modules/cookiecutter/default.nix
index bcbda36532734..abccd1e136d86 100644
--- a/pkgs/development/python-modules/cookiecutter/default.nix
+++ b/pkgs/development/python-modules/cookiecutter/default.nix
@@ -1,23 +1,29 @@
 { stdenv, buildPythonPackage, fetchPypi, isPyPy
-, itsdangerous, pytest, freezegun, docutils, jinja2, future, binaryornot, click
-, whichcraft, poyo, jinja2_time }:
+, pytest, pytestcov, pytest-mock, freezegun
+, jinja2, future, binaryornot, click, whichcraft, poyo, jinja2_time, requests }:
 
 buildPythonPackage rec {
   pname = "cookiecutter";
-  version = "1.4.0";
+  version = "1.6.0";
 
   # not sure why this is broken
   disabled = isPyPy;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1clxnabmc5s4b519r1sxyj1163x833ir8xcypmdfpf6r9kbb35vn";
+    sha256 = "1316a52e1c1f08db0c9efbf7d876dbc01463a74b155a0d83e722be88beda9a3e";
   };
 
-  buildInputs = [ itsdangerous pytest freezegun docutils ];
+  checkInputs = [ pytest pytestcov pytest-mock freezegun ];
   propagatedBuildInputs = [
-    jinja2 future binaryornot click whichcraft poyo jinja2_time
+    jinja2 future binaryornot click whichcraft poyo jinja2_time requests
   ];
+  
+  # requires network access for cloning git repos
+  doCheck = false;
+  checkPhase = ''
+    pytest
+  '';
 
   meta = with stdenv.lib; {
     homepage = https://github.com/audreyr/cookiecutter;