pythonPackages.icecream: init at 2.0.0

This commit is contained in:
Renato Florentino Garcia 2020-05-15 23:40:07 -03:00 committed by Jon
parent d0269a3b97
commit b19523ba23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi
, asttokens, colorama, executing, pygments
}:
buildPythonPackage rec {
pname = "icecream";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "16kpixl43nrn093cvkmxiq2dzd9xc73zwzkmwp0rs7x01nji8kj3";
};
propagatedBuildInputs = [ asttokens colorama executing pygments ];
meta = with lib; {
description = "A little library for sweet and creamy print debugging";
homepage = "https://github.com/gruns/icecream";
license = licenses.mit;
maintainers = with maintainers; [ renatoGarcia ];
};
}

View file

@ -4213,6 +4213,8 @@ in {
icalendar = callPackage ../development/python-modules/icalendar { };
icecream = callPackage ../development/python-modules/icecream { };
ics = callPackage ../development/python-modules/ics { };
ifaddr = callPackage ../development/python-modules/ifaddr { };