Merge pull request #142921 from veprbl/pr/pyjet_1_8_2

python3Packages.pyjet: 1.6.0 -> 1.8.2
This commit is contained in:
Dmitry Kalinkin 2021-10-27 21:35:51 -04:00 committed by GitHub
commit aee0764296
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,26 +2,19 @@
buildPythonPackage rec {
pname = "pyjet";
version = "1.6.0";
version = "1.8.2";
# tests not included in pypi tarball
src = fetchFromGitHub {
owner = "scikit-hep";
repo = pname;
rev = version;
sha256 = "0b68jnbfk2rw9i1nnwsrbrbgkj7r0w1nw0i9f8fah1wmn78k9csv";
sha256 = "sha256-0EI/dbanVDvILawnnK/Ce/5n/cD4Fv7VQEZfF9yPQio=";
};
# fix for python37
# https://github.com/scikit-hep/pyjet/issues/8
nativeBuildInputs = [ cython ];
preBuild = ''
for f in pyjet/src/*.{pyx,pxd}; do
cython --cplus "$f"
done
'';
propagatedBuildInputs = [ numpy ];
checkInputs = [ pytest ];
checkPhase = ''
mv pyjet _pyjet
@ -31,7 +24,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/scikit-hep/pyjet";
description = "The interface between FastJet and NumPy";
license = licenses.gpl3;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ veprbl ];
};
}