Merge pull request #133451 from angustrau/opensimplex

python3Packages.opensimplex: remove unneeded dependencies
This commit is contained in:
Fabian Affolter 2021-08-11 07:45:52 +02:00 committed by GitHub
commit fbd4e98dc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, autopep8
, nose
, pycodestyle
, twine
}:
buildPythonPackage rec {
@ -18,10 +15,11 @@ buildPythonPackage rec {
sha256 = "idF5JQGnAye6z3c3YU9rsHaebB3rlHJfA8vSpjDnFeM=";
};
checkInputs = [ autopep8 nose pycodestyle twine ];
checkInputs = [ nose ];
checkPhase = ''
nosetests tests/
'';
pythonImportsCheck = [ "opensimplex" ];
meta = with lib; {
description = "OpenSimplex Noise functions for 2D, 3D and 4D";