summary refs log tree commit diff
path: root/pkgs/development/python-modules/crayons/default.nix
blob: 97c33821547e5452bd4455878ca1a6e466d6cea4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchPypi, buildPythonPackage, colorama }:

buildPythonPackage rec {
  pname = "crayons";
  version = "0.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "50e5fa729d313e2c607ae8bf7b53bb487652e10bd8e7a1e08c4bc8bf62755ffc";
  };

  propagatedBuildInputs = [ colorama ];

  meta = with stdenv.lib; {
    description = "TextUI colors for Python";
    homepage = https://github.com/kennethreitz/crayons;
    license = licenses.mit;
  };
}