lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.async-lru: 2.0.4 -> 2.0.5

Diff: https://github.com/aio-libs/async-lru/compare/refs/tags/v2.0.4...refs/tags/v2.0.5

Changelog: https://github.com/aio-libs/async-lru/releases/tag/v2.0.5

+11 -10
+11 -10
pkgs/development/python-modules/async-lru/default.nix
··· 3 3 buildPythonPackage, 4 4 pythonOlder, 5 5 fetchFromGitHub, 6 + setuptools, 6 7 typing-extensions, 7 8 pytestCheckHook, 8 9 pytest-asyncio, 10 + pytest-cov-stub, 11 + pytest-timeout, 9 12 }: 10 13 11 14 buildPythonPackage rec { 12 15 pname = "async-lru"; 13 - version = "2.0.4"; 14 - 15 - disabled = pythonOlder "3.8"; 16 - 17 - format = "setuptools"; 16 + version = "2.0.5"; 17 + pyproject = true; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "aio-libs"; 21 21 repo = "async-lru"; 22 22 tag = "v${version}"; 23 - hash = "sha256-S2sOkgtS+YdMtVP7UHD3+oR8Fem8roLhhgVVfh33PcM="; 23 + hash = "sha256-FJ1q6W9IYs0OSMZc+bI4v22hOAAWAv2OW3BAqixm8Hs="; 24 24 }; 25 25 26 - propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [ typing-extensions ]; 26 + build-system = [ setuptools ]; 27 27 28 - postPatch = '' 29 - sed -i -e '/^addopts/d' -e '/^filterwarnings/,+2d' setup.cfg 30 - ''; 28 + dependencies = lib.optionals (pythonOlder "3.11") [ typing-extensions ]; 31 29 32 30 nativeCheckInputs = [ 33 31 pytestCheckHook 34 32 pytest-asyncio 33 + pytest-cov-stub 34 + pytest-timeout 35 35 ]; 36 36 37 37 pythonImportsCheck = [ "async_lru" ]; 38 38 39 39 meta = with lib; { 40 + changelog = "https://github.com/aio-libs/async-lru/releases/tag/${src.tag}"; 40 41 description = "Simple lru cache for asyncio"; 41 42 homepage = "https://github.com/wikibusiness/async_lru"; 42 43 license = licenses.mit;