3
0
Fork 0
forked from mirrors/nixpkgs

urlwatch: Disable tests, name -> pname

This commit is contained in:
Sandro Jäckel 2021-01-06 13:54:45 +01:00
parent c256508542
commit 511c7203b0
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
name = "urlwatch-${version}";
pname = "urlwatch";
version = "2.21";
src = fetchFromGitHub {
@ -23,6 +23,9 @@ python3Packages.buildPythonApplication rec {
pyppeteer
];
# no tests
doCheck = false;
meta = with stdenv.lib; {
description = "A tool for monitoring webpages for updates";
homepage = "https://thp.io/2008/urlwatch/";