1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "PyPlatec"; 8 version = "1.4.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0kqx33flcrrlipccmqs78d14pj5749bp85b6k5fgaq2c7yzz02jg"; 13 }; 14 15 meta = with lib; { 16 description = "Library to simulate plate tectonics with Python bindings"; 17 homepage = "https://github.com/Mindwerks/plate-tectonics"; 18 license = licenses.lgpl3; 19 }; 20 21}