urlwatch: Disable tests, name -> pname

+4 -1
+4 -1
pkgs/tools/networking/urlwatch/default.nix
··· 1 1 { stdenv, fetchFromGitHub, python3Packages }: 2 2 3 3 python3Packages.buildPythonApplication rec { 4 - name = "urlwatch-${version}"; 4 + pname = "urlwatch"; 5 5 version = "2.21"; 6 6 7 7 src = fetchFromGitHub { ··· 22 22 requests 23 23 pyppeteer 24 24 ]; 25 + 26 + # no tests 27 + doCheck = false; 25 28 26 29 meta = with stdenv.lib; { 27 30 description = "A tool for monitoring webpages for updates";