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

20 lines
464 B
Nix
Raw Normal View History

2018-01-20 10:46:08 +00:00
{ stdenv, fetchPypi, buildPythonPackage, colorama }:
buildPythonPackage rec {
pname = "crayons";
2020-07-31 09:56:37 +01:00
version = "0.3.1";
2018-01-20 10:46:08 +00:00
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:37 +01:00
sha256 = "dcb85b87aa03bb65bd3a073d012796b024cabeb086033e616759e2abb769440b";
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";
2018-01-20 10:46:08 +00:00
license = licenses.mit;
};
}