mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
19 lines
443 B
Nix
19 lines
443 B
Nix
{ 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;
|
|
};
|
|
}
|