Unverified Commit 6ff78dd8 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #330518 from khaneliman/dooit

dooit: fix build, reformat
parents 38f4cf05 8a7674c7
Loading
Loading
Loading
Loading
+15 −11
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, dooit
, python3
, testers
, nix-update-script
{
  lib,
  fetchFromGitHub,
  dooit,
  python311,
  testers,
  nix-update-script,
}:

let
  python3 = python311;
in
python3.pkgs.buildPythonApplication rec {
  pname = "dooit";
  version = "2.2.0";
@@ -18,9 +21,7 @@ python3.pkgs.buildPythonApplication rec {
    hash = "sha256-GtXRzj+o+FClleh73kqelk0JrSyafZhf847lX1BiS9k=";
  };

  nativeBuildInputs = with python3.pkgs; [
    poetry-core
  ];
  build-system = with python3.pkgs; [ poetry-core ];

  pythonRelaxDeps = [
    "textual"
@@ -53,7 +54,10 @@ python3.pkgs.buildPythonApplication rec {
    homepage = "https://github.com/kraanzu/dooit";
    changelog = "https://github.com/kraanzu/dooit/blob/v${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ khaneliman wesleyjrz ];
    maintainers = with maintainers; [
      khaneliman
      wesleyjrz
    ];
    mainProgram = "dooit";
  };
}