Skip to content

Commit

Permalink
python3Packages.numexpr: 2.8.4 -> 2.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliot Cameron committed Aug 17, 2023
1 parent 000a65b commit e890fb7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pkgs/development/python-modules/numexpr/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@

buildPythonPackage rec {
pname = "numexpr";
version = "2.8.4";
version = "2.8.5";
format = "setuptools";

disabled = pythonOlder "3.6";

src = fetchPypi {
inherit pname version;
hash = "sha256-1UMlN0GNGGkbkRXWFdbaoX7oJ1uu8+3xr7v4vGmAYUc=";
hash = "sha256-Re1B5VoKvOzz1xFIHhKl+3qQT+mdQrwoKhfMX46lEL4=";
};

nativeBuildInputs = [
Expand All @@ -34,10 +34,12 @@ buildPythonPackage rec {
'';

checkPhase = ''
runHook preCheck
runtest="$(pwd)/numexpr/tests/test_numexpr.py"
pushd "$out"
${python.interpreter} "$runtest"
popd
(cd "$out" && ${python.interpreter} "$runtest")
runHook postCheck
'';

pythonImportsCheck = [
Expand All @@ -48,6 +50,6 @@ buildPythonPackage rec {
description = "Fast numerical array expression evaluator for NumPy";
homepage = "https://github.com/pydata/numexpr";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = teams.deshaw.members;
};
}

0 comments on commit e890fb7

Please sign in to comment.