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