tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.asyncstdlib: init at 3.9.1
Fabian Affolter
4 years ago
a79ddca1
75e9b83b
+40
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
asyncstdlib
default.nix
top-level
python-packages.nix
+38
pkgs/development/python-modules/asyncstdlib/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchFromGitHub
4
4
+
, typing-extensions
5
5
+
, pytestCheckHook
6
6
+
, pythonOlder
7
7
+
}:
8
8
+
9
9
+
buildPythonPackage rec {
10
10
+
pname = "asyncstdlib";
11
11
+
version = "3.9.1";
12
12
+
disabled = pythonOlder "3.7";
13
13
+
format = "flit";
14
14
+
15
15
+
src = fetchFromGitHub {
16
16
+
owner = "maxfischer2781";
17
17
+
repo = pname;
18
18
+
rev = "v${version}";
19
19
+
sha256 = "13ranr7zi61w52vfrxwkf32bbhk88j0r5c5z2x2h5vw268001lk2";
20
20
+
};
21
21
+
22
22
+
propagatedBuildInputs = [
23
23
+
typing-extensions
24
24
+
];
25
25
+
26
26
+
checkInputs = [
27
27
+
pytestCheckHook
28
28
+
];
29
29
+
30
30
+
pythonImportsCheck = [ "asyncstdlib" ];
31
31
+
32
32
+
meta = with lib; {
33
33
+
description = "Python library that extends the Python asyncio standard library";
34
34
+
homepage = "https://asyncstdlib.readthedocs.io/";
35
35
+
license = with licenses; [ mit ];
36
36
+
maintainers = with maintainers; [ fab ];
37
37
+
};
38
38
+
}
+2
pkgs/top-level/python-packages.nix
···
557
557
558
558
asyncssh = callPackage ../development/python-modules/asyncssh { };
559
559
560
560
+
asyncstdlib = callPackage ../development/python-modules/asyncstdlib { };
561
561
+
560
562
async_stagger = callPackage ../development/python-modules/async_stagger { };
561
563
562
564
asynctest = callPackage ../development/python-modules/asynctest { };