python311Packages.simplisafe-python: 2023.08.0 -> 2023.10.0

Diff: https://github.com/bachya/simplisafe-python/compare/refs/tags/2023.08.0...2023.10.0

Changelog: https://github.com/bachya/simplisafe-python/releases/tag/2023.10.0
This commit is contained in:
Fabian Affolter 2023-10-12 10:09:52 +02:00
parent 3a388f757b
commit 4d38796041

View File

@ -6,7 +6,6 @@
, buildPythonPackage
, docutils
, fetchFromGitHub
, fetchpatch
, poetry-core
, pytest-aiohttp
, pytest-asyncio
@ -20,31 +19,18 @@
buildPythonPackage rec {
pname = "simplisafe-python";
version = "2023.08.0";
version = "2023.10.0";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "bachya";
repo = pname;
repo = "simplisafe-python";
rev = "refs/tags/${version}";
hash = "sha256-DExMa9z/VYAMoqUmr/gfZzYFWfTxnC+Cz4rRTaNSLBM=";
hash = "sha256-U3SbaR8PTTvoAMu65+LAHSwTmR7iwqiidbefW8bNSCo=";
};
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