1 { lib, buildPythonPackage, fetchPypi, isPyPy
2 , pytest, pytestcov, pytest-mock, freezegun
3 , jinja2, future, binaryornot, click, whichcraft, poyo, jinja2_time, requests
6 buildPythonPackage rec {
7 pname = "cookiecutter";
10 # not sure why this is broken
14 inherit pname version;
15 sha256 = "efb6b2d4780feda8908a873e38f0e61778c23f6a2ea58215723bcceb5b515dac";
18 checkInputs = [ pytest pytestcov pytest-mock freezegun ];
19 propagatedBuildInputs = [
20 jinja2 future binaryornot click whichcraft poyo jinja2_time requests python-slugify
23 # requires network access for cloning git repos
30 homepage = "https://github.com/audreyr/cookiecutter";
31 description = "A command-line utility that creates projects from project templates";
32 license = licenses.bsd3;
33 maintainers = with maintainers; [ kragniz ];