aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/icecream/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/icecream/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/icecream/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/icecream/default.nix b/nixpkgs/pkgs/development/python-modules/icecream/default.nix
new file mode 100644
index 00000000000..eba5a70577f
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/icecream/default.nix
@@ -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 ];
+ };
+}