Unverified Commit 21fd5b7d authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #313059 from r-ryantm/auto-update/python311Packages.pbs-installer

python311Packages.pbs-installer: 2024.4.1 -> 2024.4.24
parents 364ccd30 038aa846
Loading
Loading
Loading
Loading
+14 −19
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pdm-backend
, httpx
, zstandard
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  pdm-backend,
  httpx,
  zstandard,
}:

buildPythonPackage rec {
  pname = "pbs-installer";
  version = "2024.4.1";
  version = "2024.4.24";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -17,22 +18,16 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "frostming";
    repo = "pbs-installer";
    rev = version;
    hash = "sha256-0LuajPD/sM0LoyRoCkGJ9medUcWNEPqvY76GgK2rIac=";
    rev = "refs/tags/${version}";
    hash = "sha256-a35xQEdo7OOFlXk2vsTdVpEhqPRKFZRQzNnZw3c7ybA=";
  };

  build-system = [
    pdm-backend
  ];
  build-system = [ pdm-backend ];

  optional-dependencies = {
    all = optional-dependencies.install ++ optional-dependencies.download;
    download = [
      httpx
    ];
    install = [
      zstandard
    ];
    download = [ httpx ];
    install = [ zstandard ];
  };

  pythonImportsCheck = [ "pbs_installer" ];