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

20 lines
462 B
Nix
Raw Normal View History

2018-01-20 10:46:08 +00:00
{ stdenv, fetchPypi, buildPythonPackage, colorama }:
buildPythonPackage rec {
pname = "crayons";
2019-10-24 06:47:28 +00:00
version = "0.3.0";
2018-01-20 10:46:08 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:28 +00:00
sha256 = "50e5fa729d313e2c607ae8bf7b53bb487652e10bd8e7a1e08c4bc8bf62755ffc";
2018-01-20 10:46:08 +00:00
};
propagatedBuildInputs = [ colorama ];
meta = with stdenv.lib; {
description = "TextUI colors for Python";
homepage = https://github.com/kennethreitz/crayons;
license = licenses.mit;
};
}