python311Packages.aioridwell: 2023.08.0 -> 2023.10.0

Diff: https://github.com/bachya/aioridwell/compare/refs/tags/2023.08.0...2023.10.0

Changelog: https://github.com/bachya/aioridwell/releases/tag/2023.10.0
This commit is contained in:
Fabian Affolter 2023-10-12 10:43:09 +02:00
parent df4a078067
commit 487867ffa5

View File

@ -3,7 +3,6 @@
, aresponses
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, freezegun
, poetry-core
, pyjwt
@ -18,7 +17,7 @@
buildPythonPackage rec {
pname = "aioridwell";
version = "2023.08.0";
version = "2023.10.0";
format = "pyproject";
disabled = pythonOlder "3.8";
@ -27,23 +26,9 @@ buildPythonPackage rec {
owner = "bachya";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-AreQC5LOthnOEj0HnEww4zLob394XwCvqZBwjsT2Lcg=";
hash = "sha256-psynooRbX34EFYY7FTqy3KdFsv939z/qYfIfyNTVkiM=";
};
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/aioridwell/pull/234
#
(fetchpatch {
name = "clean-up-build-dependencies.patch";
url = "https://github.com/bachya/aioridwell/commit/79a9dd7462dcfeb0833abca73a1f184827120a6f.patch";
hash = "sha256-RLRbHmaR2A8MNc96WHx0L8ccyygoBUaOulAuRJkFuUM=";
})
];
nativeBuildInputs = [
poetry-core
];