tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.pyhumps: 3.7.3 -> 3.8.0
Fabian Affolter
3 years ago
ff817774
eafdbcc9
+2
-11
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pyhumps
default.nix
+2
-11
pkgs/development/python-modules/pyhumps/default.nix
reviewed
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchFromGitHub
4
4
-
, fetchpatch
5
4
, poetry-core
6
5
, pytestCheckHook
7
6
, pythonOlder
···
8
9
9
10
buildPythonPackage rec {
10
11
pname = "pyhumps";
11
11
-
version = "3.7.3";
12
12
+
version = "3.8.0";
12
13
format = "pyproject";
13
14
14
15
disabled = pythonOlder "3.7";
···
17
18
owner = "nficano";
18
19
repo = "humps";
19
20
rev = "v${version}";
20
20
-
hash = "sha256-7jkwf4qGQ+AD4/hOrEe/oAPY+gnSySUVBWFf70rU7xc=";
21
21
+
hash = "sha256-ElL/LY2V2Z3efdV5FnDy9dSoBltULrzxsjaOx+7W9Oo=";
21
22
};
22
22
-
23
23
-
patches = [
24
24
-
(fetchpatch {
25
25
-
# https://github.com/nficano/humps/pull/281
26
26
-
url = "https://github.com/nficano/humps/commit/e248c26195804fa04c43e88c5682528f367e27b3.patch";
27
27
-
hash = "sha256-+TCVfuMgfkDaS1tPu4q6PIOC3Kn1MBWyuoyAO6W0/h4=";
28
28
-
})
29
29
-
];
30
23
31
24
nativeBuildInputs = [
32
25
poetry-core