depot/third_party/nixpkgs/pkgs/development/python-modules/testrepository/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

35 lines
699 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, testtools
, testresources
, pbr
, subunit
, fixtures
, python
}:
buildPythonPackage rec {
pname = "testrepository";
version = "0.0.20";
src = fetchPypi {
inherit pname version;
sha256 = "1ssqb07c277010i6gzzkbdd46gd9mrj0bi0i8vn560n2k2y4j93m";
};
checkInputs = [ 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";
homepage = "https://pypi.python.org/pypi/testrepository";
license = licenses.bsd2;
};
}