nixpkgs/pkgs/development/python-modules/green/default.nix

35 lines
734 B
Nix
Raw Normal View History

2019-10-17 16:17:05 +00:00
{ lib, buildPythonPackage, fetchPypi, isPy3k
, colorama
, coverage
, termstyle
, lxml
, unidecode
, mock
, backports_shutil_get_terminal_size
}:
2018-02-20 00:16:31 +00:00
buildPythonPackage rec {
pname = "green";
2020-08-16 17:31:02 +00:00
version = "3.2.1";
2018-02-20 00:16:31 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 17:31:02 +00:00
sha256 = "c5a90e247237ac7e320120961608cf65191134fa400d327cbd4d09864c880935";
2018-02-20 00:16:31 +00:00
};
propagatedBuildInputs = [
2019-10-17 16:17:05 +00:00
colorama coverage termstyle unidecode lxml
2018-02-20 00:16:31 +00:00
] ++ lib.optionals (!isPy3k) [ mock backports_shutil_get_terminal_size ];
2019-10-17 16:17:05 +00:00
# let green run it's own test suite
checkPhase = ''
$out/bin/green green
'';
2018-02-20 00:16:31 +00:00
meta = with lib; {
description = "Python test runner";
homepage = "https://github.com/CleanCut/green";
2018-02-20 00:16:31 +00:00
license = licenses.mit;
};
}