Merge pull request #89340 from utdemir/cookiecutter-fix

python3Packages.cookiecutter: add missing slugify dependency
This commit is contained in:
Benjamin Hipple 2020-06-03 22:24:12 -04:00 committed by GitHub
commit 94bb84f9ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,7 +17,7 @@ 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