Unverified Commit a16d07db authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

python3Packages.vnoise: init at 0.1.0

parent 53bbdc1a
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };