tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.celery-types: 0.19.0 -> 0.20.0
Fabian Affolter
2 years ago
c0e9c755
0f6819c3
+2
-13
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
celery-types
default.nix
+2
-13
pkgs/development/python-modules/celery-types/default.nix
reviewed
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
-
, fetchpatch
4
3
, fetchPypi
5
4
, poetry-core
6
5
, pythonOlder
···
9
8
10
9
buildPythonPackage rec {
11
10
pname = "celery-types";
12
12
-
version = "0.19.0";
11
11
+
version = "0.20.0";
13
12
format = "pyproject";
14
13
15
14
disabled = pythonOlder "3.10";
16
15
17
16
src = fetchPypi {
18
17
inherit pname version;
19
19
-
hash = "sha256-1OLUJxsuxG/sCKDxKiU4i7o5HyaJdIW8rPo8UofMI28=";
18
18
+
hash = "sha256-5cdiVVYF7QWSuu2dUZIwBGzo56EcZ6ghVVwIt87OGWA=";
20
19
};
21
21
-
22
22
-
patches = [
23
23
-
# remove extraneous build dependencies:
24
24
-
# https://github.com/sbdchd/celery-types/pull/138
25
25
-
(fetchpatch {
26
26
-
name = "clean-up-build-dependencies.patch";
27
27
-
url = "https://github.com/sbdchd/celery-types/commit/ff83f06a0302084e1a690e2a5a8b25f2c0dfc6e7.patch";
28
28
-
hash = "sha256-c68SMugg6Qk88FC842/czoxLpk0uVAVSlWsvo4NI9uo=";
29
29
-
})
30
30
-
];
31
20
32
21
propagatedBuildInputs = [
33
22
typing-extensions