8 buildPythonPackage rec {
12 src = fetchFromGitHub {
16 sha256 = "C/MTKTHjxMsOgzuXvokw039Kv6N/PgBoOqKleWPLpw0=";
19 propagatedBuildInputs = [ numpy ];
21 nativeCheckInputs = [ pytestCheckHook ];
22 pytestFlagsArray = [ "tests/test_opensimplex.py" ];
23 pythonImportsCheck = [ "opensimplex" ];
26 description = "OpenSimplex Noise functions for 2D, 3D and 4D";
28 OpenSimplex noise is an n-dimensional gradient noise function that was
29 developed in order to overcome the patent-related issues surrounding
30 Simplex noise, while continuing to also avoid the visually-significant
31 directional artifacts characteristic of Perlin noise.
33 homepage = "https://github.com/lmas/opensimplex";
34 license = with licenses; [ mit ];
35 maintainers = with maintainers; [ emilytrau ];