blob: dc760169c215a363b606471fc47e3499b5f781a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
fetchPypi,
mashumaro,
orjson,
aiohttp,
yarl,
setuptools,
}:
buildPythonPackage rec {
pname = "asyncarve";
version = "0.1.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-5h56Sr0kPLrNPU70W90WsjmWax/N90dRMJ6lI5Mg86E=";
};
build-system = [ setuptools ];
dependencies = [
mashumaro
orjson
aiohttp
yarl
];
# No tests in repo
doCheck = false;
pythonImportsCheck = [ "asyncarve" ];
meta = with lib; {
description = "Simple Arve library";
homepage = "https://github.com/arvetech/asyncarve";
license = with licenses; [ mit ];
maintainers = with maintainers; [ pyrox0 ];
};
}
|