1{ lib, buildPythonPackage, fetchPypi
2, asttokens, colorama, executing, pygments
3}:
4
5buildPythonPackage rec {
6 pname = "icecream";
7 version = "2.1.1";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "47e00e3f4e8477996e7dc420b6fa8ba53f8ced17de65320fedb5b15997b76589";
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}