python314Packages.pyfastnoiselite: init at 0.0.7

This commit is contained in:
Sandro Jäckel
2026-05-09 04:07:15 +02:00
parent 16dfcd3e0f
commit 2db9058c30
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
numpy,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "pyfastnoiselite";
version = "0.0.7";
pyproject = true;
src = fetchFromGitHub {
owner = "tizilogic";
repo = "PyFastNoiseLite";
tag = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-Dyi7FeNnlX3EA8qSylapvZJ4/02ayQC5EBtRY6KBJRA=";
};
build-system = [ setuptools ];
dependencies = [ numpy ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "pyfastnoiselite" ];
meta = {
description = "Wrapper for Auburns' FastNoise Lite noise generation library";
homepage = "https://github.com/tizilogic/PyFastNoiseLite";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
})
+2
View File
@@ -13840,6 +13840,8 @@ self: super: with self; {
pyfakewebcam = callPackage ../development/python-modules/pyfakewebcam { };
pyfastnoiselite = callPackage ../development/python-modules/pyfastnoiselite { };
pyfatfs = callPackage ../development/python-modules/pyfatfs { };
pyfcm = callPackage ../development/python-modules/pyfcm { };