pythonPackages.python-manilaclient: init 3.0.0

This commit is contained in:
superherointj
2021-09-13 17:10:40 -03:00
parent 7e13a25c8e
commit 823d821679
3 changed files with 91 additions and 0 deletions
@@ -0,0 +1,31 @@
{ buildPythonPackage
, python-manilaclient
, stestr
, ddt
, tempest
, mock
, python-openstackclient
}:
buildPythonPackage rec {
pname = "python-manilaclient-tests";
inherit (python-manilaclient) version;
src = python-manilaclient.src;
dontBuild = true;
dontInstall = true;
checkInputs = [
python-manilaclient
stestr
ddt
tempest
mock
python-openstackclient
];
checkPhase = ''
stestr run
'';
}