aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/cookiecutter/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/cookiecutter/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/cookiecutter/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/cookiecutter/default.nix b/nixpkgs/pkgs/development/python-modules/cookiecutter/default.nix
index 34c21372aee..23bc8bcec52 100644
--- a/nixpkgs/pkgs/development/python-modules/cookiecutter/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/cookiecutter/default.nix
@@ -1,6 +1,7 @@
{ stdenv, buildPythonPackage, fetchPypi, isPyPy
, pytest, pytestcov, pytest-mock, freezegun
-, jinja2, future, binaryornot, click, whichcraft, poyo, jinja2_time, requests }:
+, jinja2, future, binaryornot, click, whichcraft, poyo, jinja2_time, requests
+, python-slugify }:
buildPythonPackage rec {
pname = "cookiecutter";
@@ -16,9 +17,9 @@ buildPythonPackage rec {
checkInputs = [ pytest pytestcov pytest-mock freezegun ];
propagatedBuildInputs = [
- jinja2 future binaryornot click whichcraft poyo jinja2_time requests
+ jinja2 future binaryornot click whichcraft poyo jinja2_time requests python-slugify
];
-
+
# requires network access for cloning git repos
doCheck = false;
checkPhase = ''