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