Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage 2, python-manilaclient 3, stestr 4, ddt 5, tempest 6, mock 7, python-openstackclient 8}: 9 10buildPythonPackage rec { 11 pname = "python-manilaclient-tests"; 12 inherit (python-manilaclient) version; 13 14 src = python-manilaclient.src; 15 16 dontBuild = true; 17 dontInstall = true; 18 19 nativeCheckInputs = [ 20 python-manilaclient 21 stestr 22 ddt 23 tempest 24 mock 25 python-openstackclient 26 ]; 27 28 checkPhase = '' 29 stestr run 30 ''; 31}