python3Packages.cookiecutter: add missing slugify dependency
This commit is contained in:
parent
cfa5a0c0e0
commit
bf1c120e15
@ -1,6 +1,7 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, isPyPy
|
{ stdenv, buildPythonPackage, fetchPypi, isPyPy
|
||||||
, pytest, pytestcov, pytest-mock, freezegun
|
, 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 {
|
buildPythonPackage rec {
|
||||||
pname = "cookiecutter";
|
pname = "cookiecutter";
|
||||||
@ -16,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
checkInputs = [ pytest pytestcov pytest-mock freezegun ];
|
checkInputs = [ pytest pytestcov pytest-mock freezegun ];
|
||||||
propagatedBuildInputs = [
|
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
|
# requires network access for cloning git repos
|
||||||
|
Loading…
Reference in New Issue
Block a user