lol

python311Packages.aiorecollect: 2023.08.0 -> 2023.09.0

Changelog: https://github.com/bachya/aiorecollect/releases/tag/2023.09.0

+5 -19
+5 -19
pkgs/development/python-modules/aiorecollect/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "aiorecollect"; 16 - version = "2023.08.0"; 16 + version = "2023.09.0"; 17 17 format = "pyproject"; 18 18 19 - disabled = pythonOlder "3.7"; 19 + disabled = pythonOlder "3.9"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "bachya"; 23 23 repo = pname; 24 - rev = version; 25 - hash = "sha256-oTkWirq3w0DgQWWe0ziK+ry4pg6j6SQbBESLG4xgDE4="; 24 + rev = "refs/tags/${version}"; 25 + hash = "sha256-45LgfCA8037GqP4WfEjE4hj2YdKUGu2hGrQ/f0r1PAI="; 26 26 }; 27 - 28 - patches = [ 29 - # This patch removes references to setuptools and wheel that are no longer 30 - # necessary and changes poetry to poetry-core, so that we don't need to add 31 - # unnecessary nativeBuildInputs. 32 - # 33 - # https://github.com/bachya/aiorecollect/pull/207 34 - # 35 - (fetchpatch { 36 - name = "clean-up-dependencies.patch"; 37 - url = "https://github.com/bachya/aiorecollect/commit/0bfddead1c1b176be4d599b8e12ed608eac97b8b.patch"; 38 - hash = "sha256-w/LAtyuyYsAAukDeIy8XLlp9QrydC1Wmi2zxEj1Zdm8="; 39 - includes = [ "pyproject.toml" ]; 40 - }) 41 - ]; 42 27 43 28 postPatch = '' 44 29 # this is not used directly by the project ··· 80 65 and more. 81 66 ''; 82 67 homepage = "https://github.com/bachya/aiorecollect"; 68 + changelog = "https://github.com/bachya/aiorecollect/releases/tag/${version}"; 83 69 license = with licenses; [ mit ]; 84 70 maintainers = with maintainers; [ fab ]; 85 71 };