nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 22 lines 581 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, asttokens, colorama, executing, pygments 3}: 4 5buildPythonPackage rec { 6 pname = "icecream"; 7 version = "2.1.2"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "sha256-CTALLRxnhxJBDL1HyVGY6xtYD2bzEaVUzNa551js4O4="; 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}