lol
0
fork

Configure Feed

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

python310Packages.aiolimiter: 1.0.0 -> 1.1.0

Changelog: https://github.com/mjpieters/aiolimiter/blob/v1.1.0/CHANGELOG.md

+3 -12
+3 -12
pkgs/development/python-modules/aiolimiter/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , poetry-core 6 5 , importlib-metadata 7 6 , pytest-asyncio ··· 12 11 13 12 buildPythonPackage rec { 14 13 pname = "aiolimiter"; 15 - version = "1.0.0"; 14 + version = "1.1.0"; 16 15 format = "pyproject"; 17 16 18 17 disabled = pythonOlder "3.7"; ··· 21 20 owner = "mjpieters"; 22 21 repo = pname; 23 22 rev = "v${version}"; 24 - hash = "sha256-4wByVZoOLhrXFx9oK19GBmRcjGoJolQ3Gwx9vQV/n8s="; 23 + hash = "sha256-BpLh9utf2oJe+83rsIZeV5+MjbJ3aO5slMNVbUywQIo="; 25 24 }; 26 25 27 26 nativeBuildInputs = [ ··· 38 37 toml 39 38 ]; 40 39 41 - patches = [ 42 - # Switch to poetry-core, https://github.com/mjpieters/aiolimiter/pull/77 43 - (fetchpatch { 44 - name = "switch-to-peotry-core.patch"; 45 - url = "https://github.com/mjpieters/aiolimiter/commit/84a85eff42621b0daff8fcf6bb485db313faae0b.patch"; 46 - hash = "sha256-xUfJwLvMF2Xt/V1bKBFn/fjn1uyw7bGNo9RpWxtyr50="; 47 - }) 48 - ]; 49 - 50 40 postPatch = '' 51 41 substituteInPlace tox.ini \ 52 42 --replace " --cov=aiolimiter --cov-config=tox.ini --cov-report term-missing" "" ··· 59 49 meta = with lib; { 60 50 description = "Implementation of a rate limiter for asyncio"; 61 51 homepage = "https://github.com/mjpieters/aiolimiter"; 52 + changelog = "https://github.com/mjpieters/aiolimiter/blob/v${version}/CHANGELOG.md"; 62 53 license = with licenses; [ mit ]; 63 54 maintainers = with maintainers; [ fab ]; 64 55 };