cookiecutter: init at 1.3.0

This commit is contained in:
Louis Taylor 2016-01-17 16:31:36 +00:00
parent b0ca115059
commit fb9052c098
2 changed files with 26 additions and 0 deletions

View file

@ -5619,6 +5619,8 @@ let
complexity = callPackage ../development/tools/misc/complexity { };
cookiecutter = pythonPackages.cookiecutter;
ctags = callPackage ../development/tools/misc/ctags { };
ctagsWrapped = callPackage ../development/tools/misc/ctags/wrapped.nix {};

View file

@ -3151,6 +3151,30 @@ in modules // {
};
};
cookiecutter = buildPythonPackage rec {
version = "1.3.0";
name = "cookiecutter-${version}";
# dependency problems, next release of cookiecutter should unblock these
disabled = isPy3k || isPyPy;
src = pkgs.fetchurl {
url = "https://github.com/audreyr/cookiecutter/archive/${version}.tar.gz";
sha256 = "1vchjvh7591nczz2zz55aghk9mhpm6kqgm62d05d4mjrx9xjkdcg";
};
buildInputs = with self; [ itsdangerous ];
propagatedBuildInputs = with self; [
jinja2 future binaryornot click whichcraft ruamel_yaml ];
meta = {
homepage = https://github.com/audreyr/cookiecutter;
description = "A command-line utility that creates projects from project templates";
license = licenses.bsd3;
maintainers = with maintainers; [ kragniz ];
};
};
cookies = buildPythonPackage rec {
name = "cookies-2.2.1";