Merge pull request #133451 from angustrau/opensimplex

python3Packages.opensimplex: remove unneeded dependencies

authored by Fabian Affolter and committed by GitHub fbd4e98d 6b9dc66a

+2 -4
+2 -4
pkgs/development/python-modules/opensimplex/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 - , autopep8 5 , nose 6 - , pycodestyle 7 - , twine 8 }: 9 10 buildPythonPackage rec { ··· 18 sha256 = "idF5JQGnAye6z3c3YU9rsHaebB3rlHJfA8vSpjDnFeM="; 19 }; 20 21 - checkInputs = [ autopep8 nose pycodestyle twine ]; 22 checkPhase = '' 23 nosetests tests/ 24 ''; 25 26 meta = with lib; { 27 description = "OpenSimplex Noise functions for 2D, 3D and 4D";
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , nose 5 }: 6 7 buildPythonPackage rec { ··· 15 sha256 = "idF5JQGnAye6z3c3YU9rsHaebB3rlHJfA8vSpjDnFeM="; 16 }; 17 18 + checkInputs = [ nose ]; 19 checkPhase = '' 20 nosetests tests/ 21 ''; 22 + pythonImportsCheck = [ "opensimplex" ]; 23 24 meta = with lib; { 25 description = "OpenSimplex Noise functions for 2D, 3D and 4D";