587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
92 lines
1.8 KiB
Nix
92 lines
1.8 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, ddt
|
|
, debtcollector
|
|
, eventlet
|
|
, fixtures
|
|
, iso8601
|
|
, netaddr
|
|
, netifaces
|
|
, oslo-i18n
|
|
, oslotest
|
|
, packaging
|
|
, pbr
|
|
, pyparsing
|
|
, pytz
|
|
, setuptools
|
|
, stestr
|
|
, testscenarios
|
|
, tzdata
|
|
, pyyaml
|
|
, iana-etc
|
|
, libredirect
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oslo-utils";
|
|
version = "7.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "oslo.utils";
|
|
inherit version;
|
|
hash = "sha256-XkLzOU0fH5duiZSsSgkYlm0vfq98dzgN1hLEpBSN2Y4=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# only a small portion of the listed packages are actually needed for running the tests
|
|
# so instead of removing them one by one remove everything
|
|
rm test-requirements.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pbr
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
debtcollector
|
|
iso8601
|
|
netaddr
|
|
netifaces
|
|
oslo-i18n
|
|
packaging
|
|
pyparsing
|
|
pytz
|
|
tzdata
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ddt
|
|
eventlet
|
|
fixtures
|
|
oslotest
|
|
stestr
|
|
testscenarios
|
|
pyyaml
|
|
];
|
|
|
|
# disabled tests:
|
|
# https://bugs.launchpad.net/oslo.utils/+bug/2054134
|
|
# netaddr default behaviour changed to be stricter
|
|
checkPhase =''
|
|
echo "nameserver 127.0.0.1" > resolv.conf
|
|
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols:/etc/resolv.conf=$(realpath resolv.conf)
|
|
export LD_PRELOAD=${libredirect}/lib/libredirect.so
|
|
|
|
stestr run -e <(echo "
|
|
oslo_utils.tests.test_netutils.NetworkUtilsTest.test_is_valid_ip
|
|
oslo_utils.tests.test_netutils.NetworkUtilsTest.test_is_valid_ipv4
|
|
")
|
|
'';
|
|
|
|
pythonImportsCheck = [ "oslo_utils" ];
|
|
|
|
meta = with lib; {
|
|
description = "Oslo Utility library";
|
|
homepage = "https://github.com/openstack/oslo.utils";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|