about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2018-10-05 15:46:26 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-10-13 10:14:44 +0200
commitfcbec42fc838d7bf99406796b41322be75f23717 (patch)
treef3f390d7ed36a310b8db2d7808bc021d27e0f4aa /pkgs/development/python-modules
parentfd9d45c7c146c6b7dc59f9ab950cac00ccb1ae1d (diff)
downloadnixlib-fcbec42fc838d7bf99406796b41322be75f23717.tar
nixlib-fcbec42fc838d7bf99406796b41322be75f23717.tar.gz
nixlib-fcbec42fc838d7bf99406796b41322be75f23717.tar.bz2
nixlib-fcbec42fc838d7bf99406796b41322be75f23717.tar.lz
nixlib-fcbec42fc838d7bf99406796b41322be75f23717.tar.xz
nixlib-fcbec42fc838d7bf99406796b41322be75f23717.tar.zst
nixlib-fcbec42fc838d7bf99406796b41322be75f23717.zip
pythonPackages.histbook: init at 1.2.3
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/histbook/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/histbook/default.nix b/pkgs/development/python-modules/histbook/default.nix
new file mode 100644
index 000000000000..8c44bd3ebdae
--- /dev/null
+++ b/pkgs/development/python-modules/histbook/default.nix
@@ -0,0 +1,20 @@
+{ lib, buildPythonPackage, fetchPypi, numpy, pandas }:
+
+buildPythonPackage rec {
+  pname = "histbook";
+  version = "1.2.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "12d5l4c5pxwac5hzcfif51j87qjljm0w9nd0c8pnhj7q2snap4x4";
+  };
+
+  propagatedBuildInputs = [ numpy pandas ];
+
+  meta = with lib; {
+    homepage = https://github.com/scikit-hep/histbook;
+    description = "Versatile, high-performance histogram toolkit for Numpy";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ veprbl ];
+  };
+}