python312Packages.drms: 0.8.0 -> 0.9.0 (#380064)

https://github.com/sunpy/drms/releases/tag/v0.9.0
This commit is contained in:
R. RyanTM
2025-02-10 02:37:46 +10:00
committed by GitHub
parent 204a67bff4
commit 834a56b187

View File

@@ -1,41 +1,43 @@
{ {
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchFromGitHub,
# build-system
setuptools,
setuptools-scm,
# dependencies
numpy, numpy,
pandas, pandas,
six, packaging,
astropy, astropy,
oldest-supported-numpy,
pytestCheckHook, pytestCheckHook,
pytest-doctestplus, pytest-doctestplus,
pythonOlder,
setuptools-scm,
wheel,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "drms"; pname = "drms";
version = "0.8.0"; version = "0.9.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "sunpy";
hash = "sha256-LgHu7mTgiL3n2lVaOhppdWfQiM0CFkK+6z6eBkLxmKY="; repo = "drms";
tag = "v${version}";
hash = "sha256-Hd65bpJCknBeRd27JlcIkzzoZv5nGR7C6oMSGPFiyjA=";
}; };
nativeBuildInputs = [ build-system = [
numpy setuptools
oldest-supported-numpy
setuptools-scm setuptools-scm
wheel
]; ];
propagatedBuildInputs = [ dependencies = [
numpy numpy
pandas pandas
six packaging
]; ];
nativeCheckInputs = [ nativeCheckInputs = [
@@ -56,6 +58,7 @@ buildPythonPackage rec {
meta = { meta = {
description = "Access HMI, AIA and MDI data with Python"; description = "Access HMI, AIA and MDI data with Python";
homepage = "https://github.com/sunpy/drms"; homepage = "https://github.com/sunpy/drms";
changelog = "https://github.com/sunpy/drms/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.bsd2; license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ bot-wxt1221 ]; maintainers = with lib.maintainers; [ bot-wxt1221 ];
}; };