tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
urlwatch: Disable tests, name -> pname
Sandro Jäckel
5 years ago
511c7203
c2565085
+4
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
urlwatch
default.nix
+4
-1
pkgs/tools/networking/urlwatch/default.nix
···
1
1
{ stdenv, fetchFromGitHub, python3Packages }:
2
2
3
3
python3Packages.buildPythonApplication rec {
4
4
-
name = "urlwatch-${version}";
4
4
+
pname = "urlwatch";
5
5
version = "2.21";
6
6
7
7
src = fetchFromGitHub {
···
22
22
requests
23
23
pyppeteer
24
24
];
25
25
+
26
26
+
# no tests
27
27
+
doCheck = false;
25
28
26
29
meta = with stdenv.lib; {
27
30
description = "A tool for monitoring webpages for updates";