Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / asyncio-rlock / default.nix
blob5ad616180cee210ab4450a28ff0e82feecfa7eb1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "asyncio-rlock";
9   version = "0.1.0";
11   src = fetchPypi {
12     pname = "asyncio_rlock";
13     inherit version;
14     sha256 = "7e29824331619873e10d5d99dcc46d7b8f196c4a11b203f4eeccc0c091039d43";
15   };
17   # no tests on PyPI, no tags on GitLab
18   doCheck = false;
20   pythonImportsCheck = [ "asyncio_rlock" ];
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   };