pferd: 3.6.0 -> 3.7.0

Update PFERD to latest release. This release fixes the KIT ILIAS Desktop
downloading, which is broke in 3.6.0.
This commit is contained in:
Péter Bohner (xzvf) 2024-11-17 15:24:24 +01:00
parent f370530f87
commit 06dda4babe
No known key found for this signature in database

View File

@ -1,18 +1,18 @@
{ lib
, python3Packages
, fetchFromGitHub
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "pferd";
version = "3.6.0";
version = "3.7.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "Garmelon";
repo = "PFERD";
rev = "refs/tags/v${version}";
sha256 = "sha256-BUYu04Ie7GNJYUGSH30VbVUQirg1tAl1LY39mnEsLf8=";
sha256 = "sha256-4+LlnGv/i9zDf+HeW86PJ6XsPMEkJ0JzhLr14MJ4WKM=";
};
nativeBuildInputs = with python3Packages; [
@ -31,7 +31,7 @@ python3Packages.buildPythonApplication rec {
homepage = "https://github.com/Garmelon/PFERD";
description = "Tool for downloading course-related files from ILIAS";
license = licenses.mit;
maintainers = with maintainers; [ _0xbe7a ];
maintainers = with maintainers; [_0xbe7a];
mainProgram = "pferd";
};
}