Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,16 @@
githubId = 2626481;
name = "Ambroz Bizjak";
};
ametrine = {
name = "Matilde Ametrine";
email = "matilde@diffyq.xyz";
github = "matilde-ametrine";
githubId = 90799677;
keys = [{
longkeyid = "rsa3072/0x07EE1FFCA58A11C5";
fingerprint = "7931 EB4E 4712 D7BE 04F8 6D34 07EE 1FFC A58A 11C5";
}];
};
amiddelk = {
email = "amiddelk@gmail.com";
github = "amiddelk";
Expand Down
46 changes: 46 additions & 0 deletions pkgs/development/python-modules/obspy/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5096,6 +5096,8 @@ in {
graphvizPkgs = pkgs.graphviz;
};

obspy = callPackage ../development/python-modules/obspy { };

oci = callPackage ../development/python-modules/oci { };

ocrmypdf = callPackage ../development/python-modules/ocrmypdf { };
Expand Down