My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/termcolor/default.nix

21 lines
392 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "termcolor";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b";
};
meta = with lib; {
description = "Termcolor";
homepage = "https://pypi.python.org/pypi/termcolor";
license = licenses.mit;
};
}