blob: 299a6e90c9a4c95cfe209200fc1dc0912ce17ef5 (
about) (
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
59
60
61
|
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
mock,
pbr,
pytest-mock,
pytestCheckHook,
pytz,
requests,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "jenkinsapi";
version = "0.3.14";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-G+Wj1gu5e4/VqdnUR34iAeB+RyWn1CwOsWhGu4eeS5c=";
};
patches = [ ./pytest-warn-none.patch ];
nativeBuildInputs = [
flit-core
pbr
];
propagatedBuildInputs = [
pytz
requests
setuptools
six
];
nativeCheckInputs = [
mock
pytest-mock
pytestCheckHook
];
# don't run tests that try to spin up jenkins
disabledTests = [ "systests" ];
pythonImportsCheck = [
"jenkinsapi"
"jenkinsapi.utils"
"jenkinsapi.utils.jenkins_launcher"
];
meta = with lib; {
description = "Python API for accessing resources on a Jenkins continuous-integration server";
homepage = "https://github.com/salimfadhley/jenkinsapi";
maintainers = with maintainers; [ drets ] ++ teams.deshaw.members;
license = licenses.mit;
};
}
|