pythonPAckages.worldengine: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-29 11:35:29 -04:00
parent 6c10afe130
commit 1109081215
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 64 additions and 47 deletions

View File

@ -0,0 +1,63 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, nose
, noise
, numpy
, pyplatec
, protobuf
, purepng
, argparse
, 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
'';
buildInputs = [ nose ];
propagatedBuildInputs = [ noise numpy pyplatec protobuf purepng argparse 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' \
'';
doCheck = true;
postCheck = ''
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 ];
};
}

View File

@ -4274,53 +4274,7 @@ in {
whisper = callPackage ../development/python-modules/whisper { }; whisper = callPackage ../development/python-modules/whisper { };
worldengine = buildPythonPackage rec { worldengine = callPackage ../development/python-modules/worldengine { };
name = "worldengine-${version}";
version = "0.19.0";
src = pkgs.fetchFromGitHub {
owner = "Mindwerks";
repo = "worldengine";
rev = "v${version}";
sha256 = "1xrckb0dn2841gvp32n18gib14bpi77hmjw3r9jiyhg402iip7ry";
};
src-data = pkgs.fetchFromGitHub {
owner = "Mindwerks";
repo = "worldengine-data";
rev = "029051e";
sha256 = "06xbf8gj3ljgr11v1n8jbs2q8pdf9wz53xdgkhpm8hdnjahgdxdm";
};
postUnpack = ''
ln -s ${src-data} worldengine-data
'';
buildInputs = with self; [ nose ];
propagatedBuildInputs = with self; [ noise numpy pyplatec protobuf purepng argparse 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' \
'';
doCheck = true;
postCheck = ''
nosetests tests
'';
meta = {
homepage = http://world-engine.org;
description = "World generator using simulation of plates, rain shadow, erosion, etc";
platforms = platforms.all;
maintainers = with maintainers; [ rardiol ];
};
};
carbon = callPackage ../development/python-modules/carbon { }; carbon = callPackage ../development/python-modules/carbon { };