Files
nixpkgs/pkgs/development/python-modules/icecream/default.nix
T
Martin Weinelt 2326500526 python3Packages.icecream: 2.1.5 -> 2.1.10
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:18 +01:00

49 lines
831 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
asttokens,
colorama,
executing,
pygments,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "icecream";
version = "2.1.10";
pyproject = true;
src = fetchFromGitHub {
owner = "gruns";
repo = "icecream";
tag = "v${version}";
hash = "sha256-5PFl+DIsWGbh2VR+xW/L9fYBF0VCo1B10b+mzsq85As=";
};
build-system = [ setuptools ];
dependencies = [
asttokens
colorama
executing
pygments
];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Little library for sweet and creamy print debugging";
homepage = "https://github.com/gruns/icecream";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ renatoGarcia ];
};
}