pyjet: init at 1.3.0 (#47243)

This commit is contained in:
Dmitry Kalinkin 2018-09-23 16:40:29 -04:00 committed by xeji
parent 5ad7aedf63
commit cd1b9d93e6
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -1841,6 +1841,8 @@ in {
pyjade = callPackage ../development/python-modules/pyjade {};
pyjet = callPackage ../development/python-modules/pyjet {};
PyLD = callPackage ../development/python-modules/PyLD { };
python-jose = callPackage ../development/python-modules/python-jose {};