mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +00:00
![adisbladis](/assets/img/avatar_default.png)
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
48 lines
807 B
Nix
48 lines
807 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, decorator
|
|
, future
|
|
, lxml
|
|
, matplotlib
|
|
, numpy
|
|
, requests
|
|
, scipy
|
|
, sqlalchemy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "obspy";
|
|
version = "1.2.2";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|