mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
44 lines
983 B
Nix
44 lines
983 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPyPy
|
|
, pytest, pytest-cov, pytest-mock, freezegun
|
|
, jinja2, future, binaryornot, click, jinja2-time, requests
|
|
, python-slugify
|
|
, pyyaml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cookiecutter";
|
|
version = "2.1.1";
|
|
|
|
# not sure why this is broken
|
|
disabled = isPyPy;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-85gr6NnFPawSYYZAE/3sf4Ov0uQu3m9t0GnF4UnFQNU=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytest pytest-cov pytest-mock freezegun ];
|
|
propagatedBuildInputs = [
|
|
binaryornot
|
|
jinja2
|
|
click
|
|
pyyaml
|
|
jinja2-time
|
|
python-slugify
|
|
requests
|
|
];
|
|
|
|
# requires network access for cloning git repos
|
|
doCheck = false;
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|