tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.asyncarve: init at 0.1.1
pyrox.dev
2 years ago
95052df0
3a2592ce
+44
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
asyncarve
default.nix
top-level
python-packages.nix
+42
pkgs/development/python-modules/asyncarve/default.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchPypi,
5
5
+
mashumaro,
6
6
+
orjson,
7
7
+
aiohttp,
8
8
+
yarl,
9
9
+
setuptools,
10
10
+
}:
11
11
+
12
12
+
buildPythonPackage rec {
13
13
+
pname = "asyncarve";
14
14
+
version = "0.1.1";
15
15
+
pyproject = true;
16
16
+
17
17
+
src = fetchPypi {
18
18
+
inherit pname version;
19
19
+
hash = "sha256-5h56Sr0kPLrNPU70W90WsjmWax/N90dRMJ6lI5Mg86E=";
20
20
+
};
21
21
+
22
22
+
build-system = [ setuptools ];
23
23
+
24
24
+
dependencies = [
25
25
+
mashumaro
26
26
+
orjson
27
27
+
aiohttp
28
28
+
yarl
29
29
+
];
30
30
+
31
31
+
# No tests in repo
32
32
+
doCheck = false;
33
33
+
34
34
+
pythonImportsCheck = [ "asyncarve" ];
35
35
+
36
36
+
meta = with lib; {
37
37
+
description = "Simple Arve library";
38
38
+
homepage = "https://github.com/arvetech/asyncarve";
39
39
+
license = with licenses; [ mit ];
40
40
+
maintainers = with maintainers; [ pyrox0 ];
41
41
+
};
42
42
+
}
+2
pkgs/top-level/python-packages.nix
···
877
877
878
878
asyauth = callPackage ../development/python-modules/asyauth { };
879
879
880
880
+
asyncarve = callPackage ../development/python-modules/asyncarve { };
881
881
+
880
882
async-dns = callPackage ../development/python-modules/async-dns { };
881
883
882
884
async-generator = callPackage ../development/python-modules/async-generator { };