summary refs log tree commit diff
path: root/pkgs/development/python-modules/crayons/default.nix
blob: 16b3998eb8566205051e9bfcf731dbb2125993b8 (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.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "17c0v0dkk8sn8kyyy2w7myxq9981glrbczh6h8sdcr750lb6j5sy";
  };

  propagatedBuildInputs = [ colorama ];

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