python3.pkgs.py-dormakaba-dkey: relax setuptools dependency

This commit is contained in:
Theodore Ni 2023-08-22 23:08:57 -07:00
parent 269bf5083d
commit cc05774b30
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -4,8 +4,10 @@
, buildPythonPackage
, cryptography
, fetchFromGitHub
, fetchpatch
, pythonOlder
, setuptools
, wheel
}:
buildPythonPackage rec {
@ -22,8 +24,18 @@ buildPythonPackage rec {
hash = "sha256-1jIsKQa27XNVievU02jjanRWFtJDYsHolgPBab6qpM0=";
};
patches = [
# https://github.com/emontnemery/py-dormakaba-dkey/pull/45
(fetchpatch {
name = "relax-setuptools-dependency.patch";
url = "https://github.com/emontnemery/py-dormakaba-dkey/commit/cfda4be71d39f2cfd1c0d4f7fff9018050c57f1a.patch";
hash = "sha256-JGsaLQNbUfz0uK/MeGnR2XTJDs4RnTOEg7BavfDPArg=";
})
];
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [