pythonPackages.noise: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
f79f9561a2
commit
07f611a12d
18
pkgs/development/python-modules/noise/default.nix
Normal file
18
pkgs/development/python-modules/noise/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "noise";
|
||||
version = "1.2.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0rcv40dcshqpchwkdlhsv3n68h9swm9fh4d1cgzr2hsp6rs7k8jp";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/caseman/noise;
|
||||
description = "Native-code and shader implementations of Perlin noise";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user