Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 443 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "noise"; 5 version = "1.2.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0rcv40dcshqpchwkdlhsv3n68h9swm9fh4d1cgzr2hsp6rs7k8jp"; 10 }; 11 12 meta = with lib; { 13 homepage = "https://github.com/caseman/noise"; 14 description = "Native-code and shader implementations of Perlin noise"; 15 license = licenses.mit; 16 platforms = platforms.all; 17 }; 18}