2018-03-31 18:38:14 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPyPy
|
2018-04-04 19:04:41 +01:00
|
|
|
, pytest, pytestcov, pytest-mock, freezegun
|
|
|
|
, jinja2, future, binaryornot, click, whichcraft, poyo, jinja2_time, requests }:
|
2018-03-31 18:38:14 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cookiecutter";
|
2019-12-23 08:34:04 +00:00
|
|
|
version = "1.7.0";
|
2018-03-31 18:38:14 +01:00
|
|
|
|
|
|
|
# not sure why this is broken
|
|
|
|
disabled = isPyPy;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-23 08:34:04 +00:00
|
|
|
sha256 = "1bh4vf45q9nanmgwnw7m0gxirndih9yyz5s0y2xbnlbcqbhrg6a7";
|
2018-03-31 18:38:14 +01:00
|
|
|
};
|
|
|
|
|
2018-04-04 19:04:41 +01:00
|
|
|
checkInputs = [ pytest pytestcov pytest-mock freezegun ];
|
2018-03-31 18:38:14 +01:00
|
|
|
propagatedBuildInputs = [
|
2018-04-04 19:04:41 +01:00
|
|
|
jinja2 future binaryornot click whichcraft poyo jinja2_time requests
|
2018-03-31 18:38:14 +01:00
|
|
|
];
|
2018-04-04 19:04:41 +01:00
|
|
|
|
|
|
|
# requires network access for cloning git repos
|
|
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
2018-03-31 18:38:14 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/audreyr/cookiecutter;
|
|
|
|
description = "A command-line utility that creates projects from project templates";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ kragniz ];
|
|
|
|
};
|
|
|
|
}
|