lol

python3Packages.asyncio-rlock: init at 0.1.0

+30
+28
pkgs/development/python-modules/asyncio-rlock/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "asyncio-rlock"; 9 + version = "0.1.0"; 10 + 11 + src = fetchPypi { 12 + pname = "asyncio_rlock"; 13 + inherit version; 14 + sha256 = "7e29824331619873e10d5d99dcc46d7b8f196c4a11b203f4eeccc0c091039d43"; 15 + }; 16 + 17 + # no tests on PyPI, no tags on GitLab 18 + doCheck = false; 19 + 20 + pythonImportsCheck = [ "asyncio_rlock" ]; 21 + 22 + meta = with lib; { 23 + description = "Rlock like in threading module but for asyncio"; 24 + homepage = "https://gitlab.com/heckad/asyncio_rlock"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ dotlambda ]; 27 + }; 28 + }
+2
pkgs/top-level/python-packages.nix
··· 671 671 672 672 asyncio-nats-client = callPackage ../development/python-modules/asyncio-nats-client { }; 673 673 674 + asyncio-rlock = callPackage ../development/python-modules/asyncio-rlock { }; 675 + 674 676 asyncmy = callPackage ../development/python-modules/asyncmy { }; 675 677 676 678 asyncio-throttle = callPackage ../development/python-modules/asyncio-throttle { };