biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / window-managers / i3 / kitti3.nix
blob3068baee5d9961f4067e5748eba5dcf6fb7aa973
1 { buildPythonApplication
2 , fetchFromGitHub
3 , poetry-core
4 , i3ipc
5 , lib
6 }:
8 buildPythonApplication rec {
9   pname = "kitti3";
10   version = "unstable-2021-09-11";
11   format = "pyproject";
13   src = fetchFromGitHub {
14     owner = "LandingEllipse";
15     repo = pname;
16     rev = "f9f94c8b9f8b61a9d085206ada470cfe755a2a92";
17     hash = "sha256-bcIzbDpIe2GKS9EcVqpjwz0IG2ixNMn06OIQpZ7PeH0=";
18   };
20   patches = [
21     # Fixes `build-system` not being specified in `pyproject.toml`
22     # https://github.com/LandingEllipse/kitti3/pull/25
23     ./kitti3-fix-build-system.patch
24   ];
26   nativeBuildInputs = [
27     poetry-core
28   ];
30   propagatedBuildInputs = [
31     i3ipc
32   ];
34   meta = with lib; {
35     homepage = "https://github.com/LandingEllipse/kitti3";
36     description = "Kitty drop-down service for sway & i3wm";
37     mainProgram = "kitti3";
38     license = licenses.bsd3;
39     maintainers = with maintainers; [ Enzime ];
40   };