lol

python310Packages.fe25519: relax setuptools dependency

authored by

Theodore Ni and committed by
Yt
7418b09f fbed17d9

+12
+12
pkgs/development/python-modules/fe25519/default.nix
··· 1 1 { lib 2 2 , bitlist 3 3 , buildPythonPackage 4 + , fetchpatch 4 5 , fetchPypi 5 6 , fountains 6 7 , parts 7 8 , pytestCheckHook 8 9 , pythonOlder 9 10 , setuptools 11 + , wheel 10 12 }: 11 13 12 14 buildPythonPackage rec { ··· 21 23 hash = "sha256-VwCw/sS8Pzhscoa6yCRGbB9X+CtRVn8xyBEpKfGyhhY="; 22 24 }; 23 25 26 + patches = [ 27 + # https://github.com/nthparty/fe25519/pull/1 28 + (fetchpatch { 29 + name = "relax-setuptools-dependency.patch"; 30 + url = "https://github.com/nthparty/fe25519/commit/0565f60ddbb1aa4755c68edc85b7df12a3a7311e.patch"; 31 + hash = "sha256-FcqkHPdkYN6y+Pvviul2wDsmhhcycfRGqFhmX5sxo1k="; 32 + }) 33 + ]; 34 + 24 35 nativeBuildInputs = [ 25 36 setuptools 37 + wheel 26 38 ]; 27 39 28 40 propagatedBuildInputs = [