pytr: 0.3.1 -> 0.4.1

This commit is contained in:
emaryn
2025-03-03 18:18:11 +00:00
parent 1fcc0d9772
commit 9eb38166a7
+7 -5
View File
@@ -8,19 +8,19 @@
python3Packages.buildPythonApplication rec {
pname = "pytr";
version = "0.3.1";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pytr-org";
repo = "pytr";
tag = "v${version}";
hash = "sha256-OFONjJXKkfb6+bQx5fhsadjm9WG62FISznnWL9IEY7I=";
hash = "sha256-uWG8q6H6q54v3Iq5LOkr7zi5rds+y13O0ai9R9QySdI=";
};
build-system = with python3Packages; [
babel
setuptools
hatchling
hatch-babel
];
dependencies = with python3Packages; [
@@ -46,10 +46,12 @@ python3Packages.buildPythonApplication rec {
nativeCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "--version";
pythonImportsCheck = [ "pytr" ];
meta = {
changelog = "https://github.com/pytr-org/pytr/releases/tag/v${version}";
changelog = "https://github.com/pytr-org/pytr/releases/tag/${src.tag}";
description = "Use TradeRepublic in terminal and mass download all documents";
homepage = "https://github.com/pytr-org/pytr";
license = lib.licenses.mit;