mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
22 lines
449 B
Nix
22 lines
449 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyPlatec";
|
|
version = "1.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0kqx33flcrrlipccmqs78d14pj5749bp85b6k5fgaq2c7yzz02jg";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library to simulate plate tectonics with Python bindings";
|
|
homepage = https://github.com/Mindwerks/plate-tectonics;
|
|
license = licenses.lgpl3;
|
|
};
|
|
|
|
}
|