summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyjet/default.nix
blob: 69d20863a772bb0b5dd7cd5b3deb9c5d57754ecf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchPypi, nose, numpy }:

buildPythonPackage rec {
  pname = "pyjet";
  version = "1.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1glcwv9ni8i40smfw6m456xjadlkackim5nk33xmas1fa96lpagg";
  };

  propagatedBuildInputs = [ numpy ];
  checkInputs = [ nose ];

  meta = with lib; {
    homepage = "https://github.com/scikit-hep/pyjet";
    description = "The interface between FastJet and NumPy";
    license = licenses.gpl3;
    maintainers = with maintainers; [ veprbl ];
  };
}