python.pkgs.crayons: init at 0.1.2

This commit is contained in:
Frederik Rietdijk 2018-01-20 11:46:08 +01:00
parent fa8eb1cb46
commit 6c5149f51a
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -7153,6 +7153,8 @@ in {
chardet = callPackage ../development/python-modules/chardet { };
crayons = callPackage ../development/python-modules/crayons{ };
django = self.django_1_11;
django_1_11 = callPackage ../development/python-modules/django/1_11.nix {