lol

python310Packages.cookiecutter: 2.1.1 -> 2.3.0

+15 -4
+15 -4
pkgs/development/python-modules/cookiecutter/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPyPy 2 - , pytest, pytest-cov, pytest-mock, freezegun 2 + , pytest, pytest-cov, pytest-mock, freezegun, safety, pre-commit 3 3 , jinja2, future, binaryornot, click, jinja2-time, requests 4 4 , python-slugify 5 5 , pyyaml 6 + , arrow 7 + , rich 6 8 }: 7 9 8 10 buildPythonPackage rec { 9 11 pname = "cookiecutter"; 10 - version = "2.1.1"; 12 + version = "2.3.0"; 11 13 12 14 # not sure why this is broken 13 15 disabled = isPyPy; 14 16 15 17 src = fetchPypi { 16 18 inherit pname version; 17 - hash = "sha256-85gr6NnFPawSYYZAE/3sf4Ov0uQu3m9t0GnF4UnFQNU="; 19 + hash = "sha256-lCp5SYF0f21/Q51uSdOdyRqaZBKDYUFgyTxHTHLCliE="; 18 20 }; 19 21 20 - nativeCheckInputs = [ pytest pytest-cov pytest-mock freezegun ]; 22 + nativeCheckInputs = [ 23 + pytest 24 + pytest-cov 25 + pytest-mock 26 + freezegun 27 + safety 28 + pre-commit 29 + ]; 21 30 propagatedBuildInputs = [ 22 31 binaryornot 23 32 jinja2 ··· 26 35 jinja2-time 27 36 python-slugify 28 37 requests 38 + arrow 39 + rich 29 40 ]; 30 41 31 42 # requires network access for cloning git repos