nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 26 lines 730 B view raw
1{ lib, python3Packages, fetchPypi }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "raiseorlaunch"; 5 version = "2.3.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "3d694015d020a888b42564d56559213b94981ca2b32b952a49b2de4d029d2e59"; 10 }; 11 12 nativeBuildInputs = [ python3Packages.setuptools-scm ]; 13 pythonPath = with python3Packages; [ i3ipc ]; 14 15 # no tests 16 doCheck = false; 17 pythonImportsCheck = [ "raiseorlaunch" ]; 18 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 }; 26}