python3.pkgs.simplisafe-python: clean up build dependency constraints

This commit is contained in:
Theodore Ni 2023-08-22 15:36:16 -07:00
parent c88942b8b3
commit 377212abf4
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -6,6 +6,7 @@
, buildPythonPackage
, docutils
, fetchFromGitHub
, fetchpatch
, poetry-core
, pytest-aiohttp
, pytest-asyncio
@ -31,6 +32,20 @@ buildPythonPackage rec {
hash = "sha256-dcWDB9tpKrFbnWf35HLDmgy2zNTzKNeJQrdtRXbSMvs=";
};
patches = [
# This patch removes references to setuptools and wheel that are no longer
# necessary and changes poetry to poetry-core, so that we don't need to add
# unnecessary nativeBuildInputs.
#
# https://github.com/bachya/simplisafe-python/pull/596
#
(fetchpatch {
name = "clean-up-build-dependencies.patch";
url = "https://github.com/bachya/simplisafe-python/commit/60f41c690fac7acb614490b542cbbf2fa0052266.patch";
hash = "sha256-RLRbHmaR2A8MNc96WHx0L8ccyygoBUaOulAuRJkFuUM=";
})
];
nativeBuildInputs = [
poetry-core
];