blob: a7edc3c9f51b8d084409b821372b16fa5bb73ec4 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
lib,
beautifulsoup4,
buildPythonPackage,
fetchPypi,
kitchen,
lockfile,
munch,
openidc-client,
pytestCheckHook,
requests,
setuptools,
six,
urllib3,
}:
buildPythonPackage rec {
pname = "python-fedora";
version = "1.1.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-VrnYQaObQDDjiOkMe3fazUefHOXi/5sYw5VNl9Vwmhk=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
beautifulsoup4
kitchen
lockfile
munch
openidc-client
requests
six
urllib3
];
nativeCheckInputs = [
pytestCheckHook
];
disabledTestPaths = [
# requires network access
"tests/functional/test_openidbaseclient.py"
];
pythonImportsCheck = [ "fedora" ];
meta = {
description = "Module to interact with the infrastructure of the Fedora Project";
homepage = "https://github.com/fedora-infra/python-fedora";
changelog = "https://github.com/fedora-infra/python-fedora/releases/tag/${version}";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
};
}
|