Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 582 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, asttokens, colorama, executing, pygments 3}: 4 5buildPythonPackage rec { 6 pname = "icecream"; 7 version = "2.0.0"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "16kpixl43nrn093cvkmxiq2dzd9xc73zwzkmwp0rs7x01nji8kj3"; 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}