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