repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
termcolor
/
default.nix
blob
e440dab114faf8de26f09a127f9de6341df05b21
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
4
}:
5
6
buildPythonPackage rec {
7
pname = "termcolor";
8
version = "1.1.0";
9
10
src = fetchPypi {
11
inherit pname version;
12
sha256 = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b";
13
};
14
15
meta = with lib; {
16
description = "Termcolor";
17
homepage = "https://pypi.python.org/pypi/termcolor";
18
license = licenses.mit;
19
};
20
21
}