nixpkgs/pkgs/applications/misc/raiseorlaunch/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
748 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi }:
2019-10-21 11:41:24 +01:00
python3Packages.buildPythonApplication rec {
pname = "raiseorlaunch";
2024-01-11 17:53:06 +00:00
version = "2.3.5";
2019-10-21 11:41:24 +01:00
src = fetchPypi {
2019-10-21 11:41:24 +01:00
inherit pname version;
hash = "sha256-L/hu0mYCAxHkp5me96a6HlEY6QsuJDESpTNhlzVRHWs=";
2019-10-21 11:41:24 +01:00
};
nativeBuildInputs = [ python3Packages.setuptools-scm ];
2019-10-21 11:41:24 +01:00
pythonPath = with python3Packages; [ i3ipc ];
2021-01-07 10:40:32 +00:00
# no tests
doCheck = false;
pythonImportsCheck = [ "raiseorlaunch" ];
2019-10-21 11:41:24 +01:00
meta = with lib; {
maintainers = with maintainers; [ winpat ];
description = "Run-or-raise-application-launcher for i3 window manager";
mainProgram = "raiseorlaunch";
2019-10-21 11:41:24 +01:00
homepage = "https://github.com/open-dynaMIX/raiseorlaunch";
license = licenses.mit;
platforms = platforms.linux;
};
}