python3Packages.vnoise: init at 0.1.0
This commit is contained in:
parent
53bbdc1a69
commit
a16d07db1d
35
pkgs/development/python-modules/vnoise/default.nix
Normal file
35
pkgs/development/python-modules/vnoise/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user