2020-07-18 16:06:22 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, asttokens, colorama, executing, pygments
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "icecream";
|
2022-02-20 05:27:41 +00:00
|
|
|
version = "2.1.2";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-20 05:27:41 +00:00
|
|
|
sha256 = "sha256-CTALLRxnhxJBDL1HyVGY6xtYD2bzEaVUzNa551js4O4=";
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|