1{ lib, buildPythonPackage, fetchPypi
2, asttokens, colorama, executing, pygments
3}:
4
5buildPythonPackage rec {
6 pname = "icecream";
7 version = "2.1.3";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "sha256-CqSnwzdOw2FTodCPgeMIDoPYrB7v2X0vT+lUTo+bSd4=";
12 };
13
14 propagatedBuildInputs = [ asttokens colorama executing pygments ];
15
16 meta = with lib; {
17 description = "A little library for sweet and creamy print debugging";
18 homepage = "https://github.com/gruns/icecream";
19 license = licenses.mit;
20 maintainers = with maintainers; [ renatoGarcia ];
21 };
22}