python310Packages.pyjet: 1.8.2 -> 1.9.0

This commit is contained in:
R. Ryantm 2022-07-02 11:35:53 +00:00 committed by Jonathan Ringer
parent 8f9d066909
commit 7f74d98bdc

View file

@ -2,14 +2,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyjet"; pname = "pyjet";
version = "1.8.2"; version = "1.9.0";
# tests not included in pypi tarball # tests not included in pypi tarball
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "scikit-hep"; owner = "scikit-hep";
repo = pname; repo = pname;
rev = version; rev = "refs/tags/${version}";
sha256 = "sha256-0EI/dbanVDvILawnnK/Ce/5n/cD4Fv7VQEZfF9yPQio="; sha256 = "sha256-0g0fCf0FIwde5Vsc/BJxjgMcs5llpD8JqOgFbMjOooc=";
}; };
nativeBuildInputs = [ cython ]; nativeBuildInputs = [ cython ];