mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
d62db346c8
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/urlwatch/versions. These checks were done: - built on NixOS - /nix/store/yxp495qcrnid39kivd5b748j8frqlkdm-urlwatch-2.13/bin/.urlwatch-wrapped passed the binary check. - /nix/store/yxp495qcrnid39kivd5b748j8frqlkdm-urlwatch-2.13/bin/urlwatch passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 2 of 2 passed binary check by having the new version present in output. - found 2.13 with grep in /nix/store/yxp495qcrnid39kivd5b748j8frqlkdm-urlwatch-2.13 - directory tree listing: https://gist.github.com/255d16f15c73bd3e1d6a677d1dd4c3c6 - du listing: https://gist.github.com/a3fa79092d3a5ca8f6929ee7b05f686f
30 lines
662 B
Nix
30 lines
662 B
Nix
{ stdenv, fetchFromGitHub, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "urlwatch-${version}";
|
|
version = "2.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thp";
|
|
repo = "urlwatch";
|
|
rev = version;
|
|
sha256 = "0rspb5j02mmb0r2dnfryx7jaczvb22lsnysgrr1l9iag0djcgdf5";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
appdirs
|
|
keyring
|
|
minidb
|
|
pyyaml
|
|
pycodestyle
|
|
requests
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool for monitoring webpages for updates";
|
|
homepage = https://thp.io/2008/urlwatch/;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ tv ];
|
|
};
|
|
}
|