nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildPythonPackage,
3 ddt,
4 fixtures,
5 python-manilaclient,
6 python-openstackclient,
7 requests-mock,
8 stestr,
9 tempest,
10 testtools,
11}:
12
13buildPythonPackage {
14 pname = "python-manilaclient-tests";
15 inherit (python-manilaclient) version src;
16 pyproject = false;
17
18 dontBuild = true;
19 dontInstall = true;
20
21 nativeCheckInputs = [
22 ddt
23 fixtures
24 python-manilaclient
25 python-openstackclient
26 requests-mock
27 stestr
28 tempest
29 testtools
30 ];
31
32 checkPhase = ''
33 stestr run
34 '';
35}