+11
pkgs/development/python-modules/wheel-filename/default.nix
+11
pkgs/development/python-modules/wheel-filename/default.nix
···
1
{ lib
2
, buildPythonPackage
3
, fetchFromGitHub
4
+
, fetchpatch
5
, pytestCheckHook
6
, pythonOlder
7
, setuptools
8
+
, wheel
9
}:
10
11
buildPythonPackage rec {
···
22
hash = "sha256-M3XGHG733X5qKuMS6mvFSFHYOwWPaBMXw+w0eYo6ByE=";
23
};
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
+
33
nativeBuildInputs = [
34
setuptools
35
+
wheel
36
];
37
38
nativeCheckInputs = [