python3Packages.opensimplex: 0.3 -> 0.4.2

This commit is contained in:
Angus Trau 2022-02-08 06:45:51 +00:00 committed by Jonathan Ringer
parent cff82556ec
commit bff4b9cdc7

@ -1,24 +1,25 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, nose
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "opensimplex";
version = "0.3";
version = "0.4.2";
src = fetchFromGitHub {
owner = "lmas";
repo = pname;
rev = "v${version}";
sha256 = "idF5JQGnAye6z3c3YU9rsHaebB3rlHJfA8vSpjDnFeM=";
sha256 = "zljS0yu3cHF2Vz3rFkwLXiHnKjo970MDIrC/56FoHa4=";
};
checkInputs = [ nose ];
checkPhase = ''
nosetests tests/
'';
propagatedBuildInputs = [ numpy ];
checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests/test_opensimplex.py" ];
pythonImportsCheck = [ "opensimplex" ];
meta = with lib; {