16 buildPythonPackage rec {
17 pname = "worldengine";
20 src = fetchFromGitHub {
24 sha256 = "1xrckb0dn2841gvp32n18gib14bpi77hmjw3r9jiyhg402iip7ry";
27 src-data = fetchFromGitHub {
29 repo = "worldengine-data";
31 sha256 = "06xbf8gj3ljgr11v1n8jbs2q8pdf9wz53xdgkhpm8hdnjahgdxdm";
35 ln -s ${src-data} worldengine-data
38 propagatedBuildInputs = [ noise numpy pyplatec protobuf purepng h5py gdal ];
41 substituteInPlace setup.py \
42 --replace pypng>=0.0.18 purepng \
43 --replace 'numpy>=1.9.2, <= 1.10.0.post2' 'numpy' \
44 --replace 'argparse==1.2.1' "" \
45 --replace 'protobuf==3.0.0a3' 'protobuf' \
46 --replace 'noise==1.2.2' 'noise' \
47 --replace 'PyPlatec==1.4.0' 'PyPlatec' \
50 doCheck = !isPy27; # google namespace clash
51 checkInputs = [ pytestCheckHook ];
58 homepage = "http://world-engine.org";
59 description = "World generator using simulation of plates, rain shadow, erosion, etc";
60 license = licenses.mit;
61 maintainers = with maintainers; [ rardiol ];