sq: 0.48.3 -> 0.48.4 (#359055)
[NixPkgs.git] / pkgs / tools / wayland / swaytools / default.nix
blobc6aa46864e9a6200b0b1a225f7963ef6f72baded
1 { lib, setuptools, buildPythonApplication, fetchFromGitHub, slurp }:
3 buildPythonApplication rec {
4   pname = "swaytools";
5   version = "0.1.2";
7   format = "pyproject";
9   src = fetchFromGitHub {
10     owner = "tmccombs";
11     repo = "swaytools";
12     rev = version;
13     sha256 = "sha256-UoWK53B1DNmKwNLFwJW1ZEm9dwMOvQeO03+RoMl6M0Q=";
14   };
16   nativeBuildInputs = [ setuptools ];
18   propagatedBuildInputs = [ slurp ];
20   meta = with lib; {
21     homepage = "https://github.com/tmccombs/swaytools";
22     description = "Collection of simple tools for sway (and i3)";
23     license = licenses.gpl3Only;
24     maintainers = with maintainers; [ atila ];
25     platforms = platforms.linux;
26   };