pyjet: init at 1.3.0 (#47243)
This commit is contained in:
parent
5ad7aedf63
commit
cd1b9d93e6
21
pkgs/development/python-modules/pyjet/default.nix
Normal file
21
pkgs/development/python-modules/pyjet/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1841,6 +1841,8 @@ in {
|
|||||||
|
|
||||||
pyjade = callPackage ../development/python-modules/pyjade {};
|
pyjade = callPackage ../development/python-modules/pyjade {};
|
||||||
|
|
||||||
|
pyjet = callPackage ../development/python-modules/pyjet {};
|
||||||
|
|
||||||
PyLD = callPackage ../development/python-modules/PyLD { };
|
PyLD = callPackage ../development/python-modules/PyLD { };
|
||||||
|
|
||||||
python-jose = callPackage ../development/python-modules/python-jose {};
|
python-jose = callPackage ../development/python-modules/python-jose {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user