Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / icecream / default.nix
blobb75d0d5d432562cb5e49eb8b7c136f35ab822fa4
1 { lib, buildPythonPackage, fetchPypi
2 , asttokens, colorama, executing, pygments
3 }:
5 buildPythonPackage rec {
6   pname = "icecream";
7   version = "2.1.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "c2e7b74c1c12caa2cfde050f2e636493ee77a9fb4a494b5593418ab359924a24";
12   };
14   propagatedBuildInputs = [ asttokens colorama executing pygments ];
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   };