python3Packages.cookiecutter: add missing slugify dependency

This commit is contained in:
Utku Demir 2020-06-02 15:21:07 +12:00
parent cfa5a0c0e0
commit bf1c120e15
No known key found for this signature in database
GPG Key ID: F3F8629C3E0BF60B

@ -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