depot/third_party/nixpkgs/pkgs/development/python-modules/pyjet/default.nix
Default email 620eecebfb Project import generated by Copybara.
GitOrigin-RevId: 2deb07f3ac4eeb5de1c12c4ba2911a2eb1f6ed61
2021-10-28 08:52:43 +02:00

30 lines
725 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, cython, pytest, numpy }:
buildPythonPackage rec {
pname = "pyjet";
version = "1.8.2";
# tests not included in pypi tarball
src = fetchFromGitHub {
owner = "scikit-hep";
repo = pname;
rev = version;
sha256 = "sha256-0EI/dbanVDvILawnnK/Ce/5n/cD4Fv7VQEZfF9yPQio=";
};
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [ numpy ];
checkInputs = [ pytest ];
checkPhase = ''
mv pyjet _pyjet
pytest tests/
'';
meta = with lib; {
homepage = "https://github.com/scikit-hep/pyjet";
description = "The interface between FastJet and NumPy";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ veprbl ];
};
}