Commit 038aa846 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pbs-installer: format with nixfmt

parent a897418a
Loading
Loading
Loading
Loading
+11 −16
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 {
@@ -21,18 +22,12 @@ buildPythonPackage rec {
    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" ];