blob: d30375552f04fea0b9a2cc1327530d233674aaf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
testtools,
testresources,
pbr,
subunit,
fixtures,
python,
}:
buildPythonPackage rec {
pname = "testrepository";
version = "0.0.21";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Nor89+CQs8aIvddUol9kvDFOUSuBb4xxufn8F9w3o9k=";
};
nativeCheckInputs = [ testresources ];
buildInputs = [ pbr ];
propagatedBuildInputs = [
fixtures
subunit
testtools
];
checkPhase = ''
${python.interpreter} ./testr
'';
meta = {
description = "Database of test results which can be used as part of developer workflow";
mainProgram = "testr";
homepage = "https://pypi.python.org/pypi/testrepository";
license = lib.licenses.bsd2;
};
}
|