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

35 lines
720 B
Nix
Raw Normal View History

2019-10-17 17:17:05 +01: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";
2019-10-17 17:17:05 +01:00
version = "3.0.0";
2018-02-20 00:16:31 +00:00
src = fetchPypi {
inherit pname version;
2019-10-17 17:17:05 +01:00
sha256 = "17cfgq0s02p5cjrsvcicqxiq6kflahjsd9pm03f054x7lpvqi5cv";
2018-02-20 00:16:31 +00:00
};
propagatedBuildInputs = [
2019-10-17 17:17:05 +01: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 17:17:05 +01: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;
license = licenses.mit;
};
}