python3Packages.pydmd: 1.0.0 -> 2025.01.01

https://github.com/PyDMD/PyDMD/releases/tag/2025.01.01
This commit is contained in:
Martin Weinelt 2025-01-19 21:17:21 +01:00
parent 20fe6ff4ae
commit 5651969379
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -17,7 +17,7 @@
let
self = buildPythonPackage rec {
pname = "pydmd";
version = "1.0.0";
version = "2025.01.01";
pyproject = true;
disabled = pythonOlder "3.6";
@ -25,8 +25,8 @@ let
src = fetchFromGitHub {
owner = "PyDMD";
repo = "PyDMD";
tag = "v${version}";
hash = "sha256-vprvq3sl/eNtu4cqg0A4XV96dzUt0nOtPmfwEv0h+PI=";
tag = version;
hash = "sha256-edjBr0LsfyBEi4YZiTY0GegqgESWgSFennZOi2YFhC4=";
};
build-system = [ setuptools ];
@ -55,7 +55,7 @@ let
meta = with lib; {
description = "Python Dynamic Mode Decomposition";
homepage = "https://pydmd.github.io/PyDMD/";
changelog = "https://github.com/PyDMD/PyDMD/releases/tag/v${version}";
changelog = "https://github.com/PyDMD/PyDMD/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ yl3dy ];
};