Unverified Commit 47832a71 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

cups-printers: 1.0.0 -> 1.1.0 (#508100)

parents 6139e248 7b1085d1
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -6,17 +6,18 @@

python3.pkgs.buildPythonApplication (finalAttrs: {
  pname = "cups-printers";
  version = "1.0.0";
  version = "1.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "audiusGmbH";
    repo = "cups-printers";
    tag = finalAttrs.version;
    hash = "sha256-HTR9t9ElQmCzJfdWyu+JQ8xBfDNpXl8XtNsJxGSfBXk=";
    hash = "sha256-Fne7V9dEZwdV6OsQPg2gzrz/wloAOOuwlx3CqXOyWBc=";
  };

  pythonRelaxDeps = [
    "rich"
    "typer"
    "validators"
  ];
@@ -25,6 +26,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {

  dependencies = with python3.pkgs; [
    pycups
    rich
    typer
    validators
  ];
@@ -36,8 +38,8 @@ python3.pkgs.buildPythonApplication (finalAttrs: {

  meta = {
    description = "Tool for interacting with a CUPS server";
    homepage = "https://github.com/audiusGmbH/cups-printers";
    changelog = "https://github.com/audiusGmbH/cups-printers/blob/${finalAttrs.version}/CHANGELOG.md";
    homepage = "https://github.com/audius/cups-printers";
    changelog = "https://github.com/audius/cups-printers/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "cups-printers";