mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
66 lines
1.1 KiB
Nix
66 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, buildPythonApplication
|
||
|
, fetchPypi
|
||
|
, coreutils
|
||
|
, pbr
|
||
|
, prettytable
|
||
|
, keystoneauth1
|
||
|
, requests
|
||
|
, warlock
|
||
|
, oslo-utils
|
||
|
, oslo-i18n
|
||
|
, wrapt
|
||
|
, pyopenssl
|
||
|
, stestr
|
||
|
, testscenarios
|
||
|
, ddt
|
||
|
, requests-mock
|
||
|
}:
|
||
|
|
||
|
buildPythonApplication rec {
|
||
|
pname = "python-glanceclient";
|
||
|
version = "3.5.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "417b9d814b43e62df4351f26a0d5569b801e9f99f7758bd8c82ef994c3629356";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace glanceclient/tests/unit/v1/test_shell.py \
|
||
|
--replace "/bin/echo" "${coreutils}/bin/echo"
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
pbr
|
||
|
prettytable
|
||
|
keystoneauth1
|
||
|
requests
|
||
|
warlock
|
||
|
oslo-utils
|
||
|
oslo-i18n
|
||
|
wrapt
|
||
|
pyopenssl
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
stestr
|
||
|
testscenarios
|
||
|
ddt
|
||
|
requests-mock
|
||
|
];
|
||
|
|
||
|
checkPhase = ''
|
||
|
stestr run
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "glanceclient" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python bindings for the OpenStack Images API";
|
||
|
homepage = "https://github.com/openstack/python-glanceclient/";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = teams.openstack.members;
|
||
|
};
|
||
|
}
|