forked from mirrors/nixpkgs
urlwatch: Disable tests, name -> pname
This commit is contained in:
parent
c256508542
commit
511c7203b0
|
@ -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/";
|
||||
|
|
Loading…
Reference in a new issue