python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / wayland / swaytools / default.nix
blobe4584436c4ebadcf4e23f992138bb6b5d504ad04
1 { lib, buildPythonApplication, fetchFromGitHub, slurp }:
3 buildPythonApplication rec {
4   pname = "swaytools";
5   version = "0.1.1";
7   src = fetchFromGitHub {
8     owner = "tmccombs";
9     repo = "swaytools";
10     rev = version;
11     sha256 = "sha256-6Ec7MPqBia0PW+pBTAItLusWMg1wlFfEaxoh20/2uHg=";
12   };
14   propagatedBuildInputs = [ slurp ];
16   meta = with lib; {
17     homepage = "https://github.com/tmccombs/swaytools";
18     description = "Collection of simple tools for sway (and i3)";
19     license = licenses.gpl3Only;
20     maintainers = with maintainers; [ atila ];
21   };