python312Packages.obspy: 1.2.2 -> 1.4.1

Diff: https://github.com/obspy/obspy/compare/1.2.2...1.4.1

Changelog: https://github.com/obspy/obspy/releases/tag/1.4.1
This commit is contained in:
Gaetan Lepage
2024-09-15 10:48:13 +02:00
parent ae1bf35cb3
commit 7294205acd
@@ -1,9 +1,13 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
decorator,
future,
lxml,
matplotlib,
numpy,
@@ -14,18 +18,22 @@
buildPythonPackage rec {
pname = "obspy";
version = "1.2.2";
format = "setuptools";
version = "1.4.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "a0f2b0915beeb597762563fa0358aa1b4d6b09ffda49909c760b5cdf5bdc419e";
src = fetchFromGitHub {
owner = "obspy";
repo = "obspy";
rev = "refs/tags/${version}";
hash = "sha256-Y833OWWBDYduyky0+MRbPoBtATTytak87hgh68QAgfw=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
pythonRelaxDeps = [ "sqlalchemy" ];
dependencies = [
decorator
future
lxml
matplotlib
numpy
@@ -39,10 +47,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "obspy" ];
meta = with lib; {
meta = {
description = "Python framework for seismological observatories";
homepage = "https://www.obspy.org";
license = licenses.lgpl3;
maintainers = [ maintainers.ametrine ];
changelog = "https://github.com/obspy/obspy/releases/tag/${version}";
license = lib.licenses.lgpl3Only;
maintainers = [ lib.maintainers.ametrine ];
};
}