···28 ++ (with gnome2; [ gnome_python gnome_python_desktop ])
29 ++ [ keybinder ];
3000031 meta = with stdenv.lib; {
32 homepage = "https://launchpad.net/dockbar/";
33 description = "Lightweight taskbar / panel replacement for Linux which works as a stand-alone dock";
···28 ++ (with gnome2; [ gnome_python gnome_python_desktop ])
29 ++ [ keybinder ];
3031+ # no tests
32+ doCheck = false;
33+34 meta = with stdenv.lib; {
35 homepage = "https://launchpad.net/dockbar/";
36 description = "Lightweight taskbar / panel replacement for Linux which works as a stand-alone dock";
+4-1
pkgs/applications/misc/raiseorlaunch/default.nix
···10 };
1112 nativeBuildInputs = [ python3Packages.setuptools_scm ];
13- checkInputs = [ python3Packages.pytest ];
14 pythonPath = with python3Packages; [ i3ipc ];
00001516 meta = with lib; {
17 maintainers = with maintainers; [ winpat ];
···10 };
1112 nativeBuildInputs = [ python3Packages.setuptools_scm ];
013 pythonPath = with python3Packages; [ i3ipc ];
14+15+ # no tests
16+ doCheck = false;
17+ pythonImportsCheck = [ "raiseorlaunch" ];
1819 meta = with lib; {
20 maintainers = with maintainers; [ winpat ];
···1112 propagatedBuildInputs = with python3Packages; [ screeninfo paramiko pynput libevdev ];
13000014 meta = with stdenv.lib; {
15 description = "A program to use a reMarkable as a graphics tablet";
16 homepage = "https://github.com/evidlo/remarkable_mouse";
···1112 propagatedBuildInputs = with python3Packages; [ screeninfo paramiko pynput libevdev ];
1314+ # no tests
15+ doCheck = false;
16+ pythonImportsCheck = [ "remarkable_mouse" ];
17+18 meta = with stdenv.lib; {
19 description = "A program to use a reMarkable as a graphics tablet";
20 homepage = "https://github.com/evidlo/remarkable_mouse";
···1112 pythonPath = with python3Packages; [ enum-compat i3ipc docopt ];
13000014 meta = with lib; {
15 maintainers = with maintainers; [ magnetophon ];
16 description = "Helps you handle more efficiently your screen real estate in i3wm by auto-splitting windows on their longest side";
···1112 pythonPath = with python3Packages; [ enum-compat i3ipc docopt ];
1314+ doCheck = false;
15+16+ pythonImportsCheck = [ "i3altlayout" ];
17+18 meta = with lib; {
19 maintainers = with maintainers; [ magnetophon ];
20 description = "Helps you handle more efficiently your screen real estate in i3wm by auto-splitting windows on their longest side";
···128 # UTF-8 locale needed for testing
129 LC_ALL = "en_US.UTF-8";
130000131 # - Anki writes some files to $HOME during tests
132 # - Skip tests using network
133 checkPhase = ''
···128 # UTF-8 locale needed for testing
129 LC_ALL = "en_US.UTF-8";
130131+ # tests fail with to many open files
132+ doCheck = !stdenv.isDarwin;
133+134 # - Anki writes some files to $HOME during tests
135 # - Skip tests using network
136 checkPhase = ''
+4-1
pkgs/tools/networking/urlwatch/default.nix
···1{ stdenv, fetchFromGitHub, python3Packages }:
23python3Packages.buildPythonApplication rec {
4- name = "urlwatch-${version}";
5 version = "2.21";
67 src = fetchFromGitHub {
···22 requests
23 pyppeteer
24 ];
0002526 meta = with stdenv.lib; {
27 description = "A tool for monitoring webpages for updates";
···1{ stdenv, fetchFromGitHub, python3Packages }:
23python3Packages.buildPythonApplication rec {
4+ pname = "urlwatch";
5 version = "2.21";
67 src = fetchFromGitHub {
···22 requests
23 pyppeteer
24 ];
25+26+ # no tests
27+ doCheck = false;
2829 meta = with stdenv.lib; {
30 description = "A tool for monitoring webpages for updates";