···11111212 propagatedBuildInputs = with python3Packages; [ screeninfo paramiko pynput libevdev ];
13131414+ # no tests
1515+ doCheck = false;
1616+ pythonImportsCheck = [ "remarkable_mouse" ];
1717+1418 meta = with stdenv.lib; {
1519 description = "A program to use a reMarkable as a graphics tablet";
1620 homepage = "https://github.com/evidlo/remarkable_mouse";
···11111212 pythonPath = with python3Packages; [ enum-compat i3ipc docopt ];
13131414+ doCheck = false;
1515+1616+ pythonImportsCheck = [ "i3altlayout" ];
1717+1418 meta = with lib; {
1519 maintainers = with maintainers; [ magnetophon ];
1620 description = "Helps you handle more efficiently your screen real estate in i3wm by auto-splitting windows on their longest side";
···128128 # UTF-8 locale needed for testing
129129 LC_ALL = "en_US.UTF-8";
130130131131+ # tests fail with to many open files
132132+ doCheck = !stdenv.isDarwin;
133133+131134 # - Anki writes some files to $HOME during tests
132135 # - Skip tests using network
133136 checkPhase = ''
+4-1
pkgs/tools/networking/urlwatch/default.nix
···11{ stdenv, fetchFromGitHub, python3Packages }:
2233python3Packages.buildPythonApplication rec {
44- name = "urlwatch-${version}";
44+ pname = "urlwatch";
55 version = "2.21";
6677 src = fetchFromGitHub {
···2222 requests
2323 pyppeteer
2424 ];
2525+2626+ # no tests
2727+ doCheck = false;
25282629 meta = with stdenv.lib; {
2730 description = "A tool for monitoring webpages for updates";