aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/worldengine
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/worldengine
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/worldengine')
-rw-r--r--nixpkgs/pkgs/development/python-modules/worldengine/default.nix63
1 files changed, 63 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/worldengine/default.nix b/nixpkgs/pkgs/development/python-modules/worldengine/default.nix
new file mode 100644
index 00000000000..103e2fc8def
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/worldengine/default.nix
@@ -0,0 +1,63 @@
+{ stdenv
+, buildPythonPackage
+, pythonOlder
+, fetchFromGitHub
+, nose
+, noise
+, numpy
+, pyplatec
+, protobuf
+, purepng
+, h5py
+, gdal
+}:
+
+buildPythonPackage rec {
+ pname = "worldengine";
+ version = "0.19.0";
+
+ src = fetchFromGitHub {
+ owner = "Mindwerks";
+ repo = "worldengine";
+ rev = "v${version}";
+ sha256 = "1xrckb0dn2841gvp32n18gib14bpi77hmjw3r9jiyhg402iip7ry";
+ };
+
+ src-data = fetchFromGitHub {
+ owner = "Mindwerks";
+ repo = "worldengine-data";
+ rev = "029051e";
+ sha256 = "06xbf8gj3ljgr11v1n8jbs2q8pdf9wz53xdgkhpm8hdnjahgdxdm";
+ };
+
+ postUnpack = ''
+ ln -s ${src-data} worldengine-data
+ '';
+
+ propagatedBuildInputs = [ noise numpy pyplatec protobuf purepng h5py gdal ];
+
+ prePatch = ''
+ substituteInPlace setup.py \
+ --replace pypng>=0.0.18 purepng \
+ --replace 'numpy>=1.9.2, <= 1.10.0.post2' 'numpy' \
+ --replace 'argparse==1.2.1' "" \
+ --replace 'protobuf==3.0.0a3' 'protobuf' \
+ --replace 'noise==1.2.2' 'noise' \
+ --replace 'PyPlatec==1.4.0' 'PyPlatec' \
+ '';
+
+ # with python<3.5, unittest fails to discover tests because of their filenames
+ # so nose is used instead.
+ checkInputs = stdenv.lib.optional (pythonOlder "3.5") [ nose ];
+ postCheck = stdenv.lib.optionalString (pythonOlder "3.5") ''
+ nosetests tests
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://world-engine.org;
+ description = "World generator using simulation of plates, rain shadow, erosion, etc";
+ license = licenses.mit;
+ maintainers = with maintainers; [ rardiol ];
+ };
+
+}