python3.pkgs.wheel-filename: fix up build dependencies (#247864)

authored by Theodore Ni and committed by GitHub fd722023 77f98b94

Changed files
+11
pkgs
development
python-modules
wheel-filename
+11
pkgs/development/python-modules/wheel-filename/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pytestCheckHook 5 , pythonOlder 6 , setuptools 7 }: 8 9 buildPythonPackage rec { ··· 20 hash = "sha256-M3XGHG733X5qKuMS6mvFSFHYOwWPaBMXw+w0eYo6ByE="; 21 }; 22 23 nativeBuildInputs = [ 24 setuptools 25 ]; 26 27 nativeCheckInputs = [
··· 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 = [