mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
0215034f25
when they already rely on SRI hashes.
23 lines
579 B
Nix
23 lines
579 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, asttokens, colorama, executing, pygments
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "icecream";
|
|
version = "2.1.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-CqSnwzdOw2FTodCPgeMIDoPYrB7v2X0vT+lUTo+bSd4=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|