ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / noise / default.nix
blobebd0178602ca3bce11d2e8b4476cf0f2832fee19
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "noise";
5   version = "1.2.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0rcv40dcshqpchwkdlhsv3n68h9swm9fh4d1cgzr2hsp6rs7k8jp";
10   };
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   };