blob: 4b960f0f74618e075a4bf9003e2f1f5d0d476050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pyplatec";
version = "1.4.0";
format = "setuptools";
src = fetchPypi {
pname = "PyPlatec";
inherit version;
sha256 = "0kqx33flcrrlipccmqs78d14pj5749bp85b6k5fgaq2c7yzz02jg";
};
env.NIX_CFLAGS_COMPILE = "-std=c++11";
meta = {
description = "Library to simulate plate tectonics with Python bindings";
homepage = "https://github.com/Mindwerks/plate-tectonics";
license = lib.licenses.lgpl3;
};
}
|