1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage 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}