mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
pythonPackages.icecream: init at 2.0.0
This commit is contained in:
parent
d0269a3b97
commit
b19523ba23
22
pkgs/development/python-modules/icecream/default.nix
Normal file
22
pkgs/development/python-modules/icecream/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, asttokens, colorama, executing, pygments
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "icecream";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "16kpixl43nrn093cvkmxiq2dzd9xc73zwzkmwp0rs7x01nji8kj3";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -4213,6 +4213,8 @@ in {
|
||||
|
||||
icalendar = callPackage ../development/python-modules/icalendar { };
|
||||
|
||||
icecream = callPackage ../development/python-modules/icecream { };
|
||||
|
||||
ics = callPackage ../development/python-modules/ics { };
|
||||
|
||||
ifaddr = callPackage ../development/python-modules/ifaddr { };
|
||||
|
Loading…
Reference in New Issue
Block a user