+11
pkgs/development/python-modules/wheel-filename/default.nix
+11
pkgs/development/python-modules/wheel-filename/default.nix
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchFromGitHub
4
+
, fetchpatch
4
5
, pytestCheckHook
5
6
, pythonOlder
6
7
, setuptools
8
+
, wheel
7
9
}:
8
10
9
11
buildPythonPackage rec {
···
20
22
hash = "sha256-M3XGHG733X5qKuMS6mvFSFHYOwWPaBMXw+w0eYo6ByE=";
21
23
};
22
24
25
+
patches = [
26
+
(fetchpatch {
27
+
name = "remove-wheel-dependency-constraint.patch";
28
+
url = "https://github.com/jwodder/wheel-filename/commit/11cfa57c8a32fa2a52fb5fe537859997bb642e75.patch";
29
+
hash = "sha256-ssePCVlJuHPJpPyFET3FnnWRlslLnZbnfn42g52yVN4=";
30
+
})
31
+
];
32
+
23
33
nativeBuildInputs = [
24
34
setuptools
35
+
wheel
25
36
];
26
37
27
38
nativeCheckInputs = [