1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "noise";
9 version = "1.2.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0rcv40dcshqpchwkdlhsv3n68h9swm9fh4d1cgzr2hsp6rs7k8jp";
15 };
16
17 meta = with lib; {
18 homepage = "https://github.com/caseman/noise";
19 description = "Native-code and shader implementations of Perlin noise";
20 license = licenses.mit;
21 platforms = platforms.all;
22 };
23}