2020-04-24 23:36:52 +00:00
|
|
|
{ lib
|
2021-12-06 16:07:01 +00:00
|
|
|
, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, mock
|
|
|
|
, pbr
|
|
|
|
, pyyaml
|
|
|
|
, setuptools
|
|
|
|
, six
|
|
|
|
, multi_key_dict
|
|
|
|
, testscenarios
|
|
|
|
, requests
|
|
|
|
, requests-mock
|
2022-06-26 10:26:21 +00:00
|
|
|
, stestr
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-jenkins";
|
|
|
|
version = "1.7.0";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "01jid5s09lr3kayr2h1z9n8h9nhyw3jxv9c4b5hrlxijknkqzvfy";
|
|
|
|
};
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
# test uses timeout mechanism unsafe for use with the "spawn"
|
|
|
|
# multiprocessing backend used on macos
|
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace tests/test_jenkins_sockets.py \
|
|
|
|
--replace test_jenkins_open_no_timeout dont_test_jenkins_open_no_timeout
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ mock ];
|
|
|
|
propagatedBuildInputs = [ pbr pyyaml setuptools six multi_key_dict requests ];
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ stestr testscenarios requests-mock ];
|
2022-06-26 10:26:21 +00:00
|
|
|
checkPhase = ''
|
2023-07-15 17:15:38 +00:00
|
|
|
# Skip tests that fail due to setuptools>=66.0.0 rejecting PEP 440
|
|
|
|
# non-conforming versions. See
|
|
|
|
# https://github.com/pypa/setuptools/issues/2497 for details.
|
|
|
|
stestr run -E "tests.test_plugins.(PluginsTestScenarios.test_plugin_version_comparison|PluginsTestScenarios.test_plugin_version_object_comparison|PluginsTest.test_plugin_equal|PluginsTest.test_plugin_not_equal)"
|
2022-06-26 10:26:21 +00:00
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python bindings for the remote Jenkins API";
|
|
|
|
homepage = "https://pypi.python.org/pypi/python-jenkins";
|
|
|
|
license = licenses.bsd3;
|
2022-06-26 10:26:21 +00:00
|
|
|
maintainers = with maintainers; [ gador ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|