python: cookiecutter: 1.4.0 -> 1.6.0
This commit is contained in:
parent
68bc584f5f
commit
3a18d042f2
@ -1,23 +1,29 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, isPyPy
|
{ stdenv, buildPythonPackage, fetchPypi, isPyPy
|
||||||
, itsdangerous, pytest, freezegun, docutils, jinja2, future, binaryornot, click
|
, pytest, pytestcov, pytest-mock, freezegun
|
||||||
, whichcraft, poyo, jinja2_time }:
|
, jinja2, future, binaryornot, click, whichcraft, poyo, jinja2_time, requests }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cookiecutter";
|
pname = "cookiecutter";
|
||||||
version = "1.4.0";
|
version = "1.6.0";
|
||||||
|
|
||||||
# not sure why this is broken
|
# not sure why this is broken
|
||||||
disabled = isPyPy;
|
disabled = isPyPy;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1clxnabmc5s4b519r1sxyj1163x833ir8xcypmdfpf6r9kbb35vn";
|
sha256 = "1316a52e1c1f08db0c9efbf7d876dbc01463a74b155a0d83e722be88beda9a3e";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ itsdangerous pytest freezegun docutils ];
|
checkInputs = [ pytest pytestcov pytest-mock freezegun ];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
jinja2 future binaryornot click whichcraft poyo jinja2_time
|
jinja2 future binaryornot click whichcraft poyo jinja2_time requests
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# requires network access for cloning git repos
|
||||||
|
doCheck = false;
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/audreyr/cookiecutter;
|
homepage = https://github.com/audreyr/cookiecutter;
|
||||||
|
Loading…
Reference in New Issue
Block a user