mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
32 lines
685 B
Nix
32 lines
685 B
Nix
{ stdenv, fetchFromGitHub, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "urlwatch-${version}";
|
|
version = "2.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thp";
|
|
repo = "urlwatch";
|
|
rev = version;
|
|
sha256 = "1bkwr151bnv72aka2r9jwaq8lkz1p6031wr5pss4sij978qn5xld";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
appdirs
|
|
cssselect
|
|
keyring
|
|
lxml
|
|
minidb
|
|
pycodestyle
|
|
pyyaml
|
|
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 ];
|
|
};
|
|
}
|