python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / raiseorlaunch / default.nix
blob88b215acdfa957790d6815298f729b82f9eae8d1
1 { lib, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "raiseorlaunch";
5   version = "2.3.3";
7   src = python3Packages.fetchPypi {
8     inherit pname version;
9     sha256 = "3d694015d020a888b42564d56559213b94981ca2b32b952a49b2de4d029d2e59";
10   };
12   nativeBuildInputs = [ python3Packages.setuptools-scm ];
13   pythonPath = with python3Packages; [ i3ipc ];
15   # no tests
16   doCheck = false;
17   pythonImportsCheck = [ "raiseorlaunch" ];
19   meta = with lib; {
20     maintainers = with maintainers; [ winpat ];
21     description = "A run-or-raise-application-launcher for i3 window manager";
22     homepage = "https://github.com/open-dynaMIX/raiseorlaunch";
23     license = licenses.mit;
24     platforms = platforms.linux;
25   };