summary refs log tree commit diff
path: root/pkgs/development/python-modules/noise/default.nix
blob: ebd0178602ca3bce11d2e8b4476cf0f2832fee19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "noise";
  version = "1.2.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0rcv40dcshqpchwkdlhsv3n68h9swm9fh4d1cgzr2hsp6rs7k8jp";
  };

  meta = with lib; {
    homepage = "https://github.com/caseman/noise";
    description = "Native-code and shader implementations of Perlin noise";
    license = licenses.mit;
    platforms = platforms.all;
  };
}