mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
pythonPackages.green: init at 2.3.0
This commit is contained in:
parent
11c57d4459
commit
7ca1e18932
@ -26053,4 +26053,23 @@ in modules // {
|
||||
|
||||
};
|
||||
|
||||
green = buildPythonPackage rec {
|
||||
name = "green-${version}";
|
||||
version = "2.3.0";
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/g/green/${name}.tar.gz";
|
||||
sha256 = "1888khfl9yxb8yfxq9b48dxwplqlxx8s0l530z5j7c6bx74v08b4";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ termstyle colorama ];
|
||||
buildInputs = with self; [ mock ];
|
||||
|
||||
meta = {
|
||||
description = "python test runner";
|
||||
homepage = "https://github.com/CleanCut/green";
|
||||
licence = licenses.mit;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user