summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyplatec/default.nix
blob: 8747840fd7c0c3a0bd08d29c0b2727ca82991585 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "PyPlatec";
  version = "1.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0kqx33flcrrlipccmqs78d14pj5749bp85b6k5fgaq2c7yzz02jg";
  };

  meta = with lib; {
    description = "Library to simulate plate tectonics with Python bindings";
    homepage    = "https://github.com/Mindwerks/plate-tectonics";
    license     = licenses.lgpl3;
  };

}