python3.pkgs.pypck: relax setuptools dependency

This commit is contained in:
Theodore Ni 2023-08-23 14:29:34 -07:00
parent 480508616d
commit a25d553044
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -2,11 +2,13 @@
, stdenv
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, pytest-asyncio
, pytest-timeout
, pytestCheckHook
, pythonOlder
, setuptools
, wheel
}:
buildPythonPackage rec {
@ -23,8 +25,18 @@ buildPythonPackage rec {
hash = "sha256-Vlt4+fRULb9mB0ceRmc7MJ50DnF9DAJPHA8iCbNVvcE=";
};
patches = [
# https://github.com/alengwenus/pypck/pull/109
(fetchpatch {
name = "relax-setuptools-dependency.patch";
url = "https://github.com/alengwenus/pypck/commit/17023ebe8082120b1eec086842ca809ec6e9df2b.patch";
hash = "sha256-kTu1+IwDrcdqelyK/vfhxw8MQBis5I1jag7YTytKQhs=";
})
];
nativeBuildInputs = [
setuptools
wheel
];
nativeCheckInputs = [