1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6}:
7
8buildPythonPackage rec {
9 pname = "asyncio-rlock";
10 version = "0.1.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 pname = "asyncio_rlock";
15 inherit version;
16 sha256 = "7e29824331619873e10d5d99dcc46d7b8f196c4a11b203f4eeccc0c091039d43";
17 };
18
19 # no tests on PyPI, no tags on GitLab
20 doCheck = false;
21
22 pythonImportsCheck = [ "asyncio_rlock" ];
23
24 meta = with lib; {
25 description = "Rlock like in threading module but for asyncio";
26 homepage = "https://gitlab.com/heckad/asyncio_rlock";
27 license = licenses.mit;
28 maintainers = with maintainers; [ dotlambda ];
29 };
30}