python3Packages.vnoise: init at 0.1.0

This commit is contained in:
Sandro Jäckel 2024-05-24 23:44:47 +02:00
parent 53bbdc1a69
commit a16d07db1d
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "vnoise";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "plottertools";
repo = "vnoise";
rev = version;
hash = "sha256-nflAh3vj48wneM0wy/+M+XD6GC63KZEIFb1x4SS46YI=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "vnoise" ];
meta = with lib; {
description = "Vectorized, pure-Python Perlin noise library";
homepage = "https://github.com/plottertools/vnoise";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View File

@ -16712,6 +16712,8 @@ self: super: with self; {
vncdo = callPackage ../development/python-modules/vncdo { };
vnoise = callPackage ../development/python-modules/vnoise { };
vobject = callPackage ../development/python-modules/vobject { };
volatile = callPackage ../development/python-modules/volatile { };