2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-26 16:13:07 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "PyPlatec";
|
|
|
|
version = "1.4.0";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0kqx33flcrrlipccmqs78d14pj5749bp85b6k5fgaq2c7yzz02jg";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-26 16:13:07 +01:00
|
|
|
description = "Library to simulate plate tectonics with Python bindings";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Mindwerks/plate-tectonics";
|
2018-10-26 16:13:07 +01:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|