Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
numpy,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "opensimplex";
|
|
version = "0.4.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lmas";
|
|
repo = "opensimplex";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-pxPak0H6Rh9KwhIsrnMvBFm1uF5XKb4B3H9cN6DM0g4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
enabledTestPaths = [ "tests/test_opensimplex.py" ];
|
|
pythonImportsCheck = [ "opensimplex" ];
|
|
|
|
meta = with lib; {
|
|
description = "OpenSimplex Noise functions for 2D, 3D and 4D";
|
|
longDescription = ''
|
|
OpenSimplex noise is an n-dimensional gradient noise function that was
|
|
developed in order to overcome the patent-related issues surrounding
|
|
Simplex noise, while continuing to also avoid the visually-significant
|
|
directional artifacts characteristic of Perlin noise.
|
|
'';
|
|
homepage = "https://github.com/lmas/opensimplex";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ emilytrau ];
|
|
};
|
|
}
|