mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
24 lines
604 B
Nix
24 lines
604 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, asttokens, colorama, executing, pygments
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "icecream";
|
|
version = "2.1.3";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|