dooit: format

This commit is contained in:
Austin Horstman
2024-07-30 00:42:53 -05:00
parent c32bbdcde9
commit 8a7674c76e
+11 -9
View File
@@ -1,9 +1,10 @@
{ lib
, fetchFromGitHub
, dooit
, testers
, nix-update-script
{
lib,
fetchFromGitHub,
dooit,
python311,
testers,
nix-update-script,
}:
let
python3 = python311;
@@ -20,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"
@@ -55,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";
};
}