blob: e35db7a04ab58553d66352a6c9981033e8bc9f26 (
plain)
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
|
{
buildPythonPackage,
fetchPypi,
flit-core,
apeye-core,
domdf-python-tools,
platformdirs,
requests,
lib,
}:
buildPythonPackage rec {
pname = "apeye";
version = "1.4.1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "apeye";
hash = "sha256-FOpUL61onjv9vaIYmjVKSQjpCu5L+EwVq3XWhFPXajY=";
};
build-system = [ flit-core ];
dependencies = [
apeye-core
domdf-python-tools
platformdirs
requests
];
pythonImportsCheck = [ "apeye" ];
meta = {
description = "Handy tools for working with URLs and APIs";
homepage = "https://github.com/domdfcoding/apeye";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
};
}
|