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