about summary refs log tree commit diff
path: root/pkgs/development/python-modules/obspy/default.nix
blob: 0f5f2c003da06a6c87a6e7abffa16ca1596c0082 (plain) (blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, future
, lxml
, matplotlib
, numpy
, requests
, scipy
, sqlalchemy
}:

buildPythonPackage rec {
  pname = "obspy";
  version = "1.2.2";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "a0f2b0915beeb597762563fa0358aa1b4d6b09ffda49909c760b5cdf5bdc419e";
  };

  propagatedBuildInputs = [
    decorator
    future
    lxml
    matplotlib
    numpy
    requests
    scipy
    sqlalchemy
  ];

  # Tests require Internet access.
  doCheck = false;

  pythonImportsCheck = [ "obspy" ];

  meta = with lib; {
    description = "Python framework for seismological observatories";
    homepage = "https://www.obspy.org";
    license = licenses.lgpl3;
    maintainers = [ maintainers.ametrine ];
  };
}