2021-01-25 00:26:54 -08:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, colorama }:
|
2018-01-20 02:46:08 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "crayons";
|
2020-11-29 06:04:25 -08:00
|
|
|
version = "0.4.0";
|
2018-01-20 02:46:08 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 06:04:25 -08:00
|
|
|
sha256 = "bd33b7547800f2cfbd26b38431f9e64b487a7de74a947b0fafc89b45a601813f";
|
2018-01-20 02:46:08 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ colorama ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-01-20 02:46:08 -08:00
|
|
|
description = "TextUI colors for Python";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/kennethreitz/crayons";
|
2018-01-20 02:46:08 -08:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|