tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.asyncio-rlock: init at 0.1.0
Robert Schütz
4 years ago
bccef853
d94eebe6
+30
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
asyncio-rlock
default.nix
top-level
python-packages.nix
+28
pkgs/development/python-modules/asyncio-rlock/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchPypi
4
4
+
, pytestCheckHook
5
5
+
}:
6
6
+
7
7
+
buildPythonPackage rec {
8
8
+
pname = "asyncio-rlock";
9
9
+
version = "0.1.0";
10
10
+
11
11
+
src = fetchPypi {
12
12
+
pname = "asyncio_rlock";
13
13
+
inherit version;
14
14
+
sha256 = "7e29824331619873e10d5d99dcc46d7b8f196c4a11b203f4eeccc0c091039d43";
15
15
+
};
16
16
+
17
17
+
# no tests on PyPI, no tags on GitLab
18
18
+
doCheck = false;
19
19
+
20
20
+
pythonImportsCheck = [ "asyncio_rlock" ];
21
21
+
22
22
+
meta = with lib; {
23
23
+
description = "Rlock like in threading module but for asyncio";
24
24
+
homepage = "https://gitlab.com/heckad/asyncio_rlock";
25
25
+
license = licenses.mit;
26
26
+
maintainers = with maintainers; [ dotlambda ];
27
27
+
};
28
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
674
+
asyncio-rlock = callPackage ../development/python-modules/asyncio-rlock { };
675
675
+
674
676
asyncmy = callPackage ../development/python-modules/asyncmy { };
675
677
676
678
asyncio-throttle = callPackage ../development/python-modules/asyncio-throttle { };