Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 36 lines 826 B view raw
1{ 2 lib, 3 python3Packages, 4 fetchPypi, 5}: 6 7python3Packages.buildPythonApplication rec { 8 pname = "i3altlayout"; 9 version = "0.3"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1h0phf3s6ljffxw0bs73k041wildaz01h37iv5mxhami41wrh4qf"; 15 }; 16 17 pythonRemoveDeps = [ "enum-compat" ]; 18 19 pythonPath = with python3Packages; [ 20 i3ipc 21 docopt 22 ]; 23 24 doCheck = false; 25 26 pythonImportsCheck = [ "i3altlayout" ]; 27 28 meta = with lib; { 29 maintainers = with maintainers; [ magnetophon ]; 30 description = "Helps you handle more efficiently your screen real estate in i3wm by auto-splitting windows on their longest side"; 31 mainProgram = "i3altlayout"; 32 homepage = "https://github.com/deadc0de6/i3altlayout"; 33 license = licenses.gpl3Only; 34 platforms = platforms.linux; 35 }; 36}