tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.cookiecutter: 2.1.1 -> 2.3.0
Gabriel Arazas
2 years ago
535dacce
48878dfe
+15
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
cookiecutter
default.nix
+15
-4
pkgs/development/python-modules/cookiecutter/default.nix
reviewed
···
1
1
{ lib, buildPythonPackage, fetchPypi, isPyPy
2
2
-
, pytest, pytest-cov, pytest-mock, freezegun
2
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
6
+
, arrow
7
7
+
, rich
6
8
}:
7
9
8
10
buildPythonPackage rec {
9
11
pname = "cookiecutter";
10
10
-
version = "2.1.1";
12
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
17
-
hash = "sha256-85gr6NnFPawSYYZAE/3sf4Ov0uQu3m9t0GnF4UnFQNU=";
19
19
+
hash = "sha256-lCp5SYF0f21/Q51uSdOdyRqaZBKDYUFgyTxHTHLCliE=";
18
20
};
19
21
20
20
-
nativeCheckInputs = [ pytest pytest-cov pytest-mock freezegun ];
22
22
+
nativeCheckInputs = [
23
23
+
pytest
24
24
+
pytest-cov
25
25
+
pytest-mock
26
26
+
freezegun
27
27
+
safety
28
28
+
pre-commit
29
29
+
];
21
30
propagatedBuildInputs = [
22
31
binaryornot
23
32
jinja2
···
26
35
jinja2-time
27
36
python-slugify
28
37
requests
38
38
+
arrow
39
39
+
rich
29
40
];
30
41
31
42
# requires network access for cloning git repos