mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
cookiecutter: init at 1.3.0
This commit is contained in:
parent
b0ca115059
commit
fb9052c098
@ -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 {};
|
||||
|
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user