lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.cookiecutter: 1.7.3 -> 2.1.1

fixes CVE-2022-24065

+13 -5
+13 -5
pkgs/development/python-modules/cookiecutter/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPyPy 2 2 , pytest, pytest-cov, pytest-mock, freezegun 3 - , jinja2, future, binaryornot, click, whichcraft, poyo, jinja2_time, requests 4 - , python-slugify }: 3 + , jinja2, future, binaryornot, click, jinja2_time, requests 4 + , python-slugify 5 + , pyyaml 6 + }: 5 7 6 8 buildPythonPackage rec { 7 9 pname = "cookiecutter"; 8 - version = "1.7.3"; 10 + version = "2.1.1"; 9 11 10 12 # not sure why this is broken 11 13 disabled = isPyPy; 12 14 13 15 src = fetchPypi { 14 16 inherit pname version; 15 - sha256 = "sha256-a5pNcoguJDvgd6c5fQ8fdv5mzz35HzEV27UzDiFPpFc="; 17 + sha256 = "sha256-85gr6NnFPawSYYZAE/3sf4Ov0uQu3m9t0GnF4UnFQNU="; 16 18 }; 17 19 18 20 checkInputs = [ pytest pytest-cov pytest-mock freezegun ]; 19 21 propagatedBuildInputs = [ 20 - jinja2 future binaryornot click whichcraft poyo jinja2_time requests python-slugify 22 + binaryornot 23 + jinja2 24 + click 25 + pyyaml 26 + jinja2_time 27 + python-slugify 28 + requests 21 29 ]; 22 30 23 31 # requires network access for cloning git repos