Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fd9d45c7c146
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fcbec42fc838
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 13, 2018

  1. pythonPackages.histbook: init at 1.2.3

    veprbl authored and FRidh committed Oct 13, 2018
    Copy the full SHA
    fcbec42 View commit details
Showing with 22 additions and 0 deletions.
  1. +20 −0 pkgs/development/python-modules/histbook/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/histbook/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -356,6 +356,8 @@ in {

habanero = callPackage ../development/python-modules/habanero { };

histbook = callPackage ../development/python-modules/histbook { };

httpsig = callPackage ../development/python-modules/httpsig { };

i3ipc = callPackage ../development/python-modules/i3ipc { };