Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 451 B view raw
1{ stdenv 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 stdenv.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}