depot/third_party/nixpkgs/pkgs/development/python-modules/testrepository/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
780 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
testtools,
testresources,
pbr,
subunit,
fixtures,
python,
}:
buildPythonPackage rec {
pname = "testrepository";
version = "0.0.21";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Nor89+CQs8aIvddUol9kvDFOUSuBb4xxufn8F9w3o9k=";
};
nativeCheckInputs = [ testresources ];
buildInputs = [ pbr ];
propagatedBuildInputs = [
fixtures
subunit
testtools
];
checkPhase = ''
${python.interpreter} ./testr
'';
meta = with lib; {
description = "A database of test results which can be used as part of developer workflow";
mainProgram = "testr";
homepage = "https://pypi.python.org/pypi/testrepository";
license = licenses.bsd2;
};
}