urlwatch: 2.6 -> 2.7
This commit is contained in:
parent
7393d245d6
commit
1f50c4e068
|
@ -1,14 +1,18 @@
|
||||||
{ stdenv, fetchurl, python3Packages }:
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
python3Packages.buildPythonPackage rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
name = "urlwatch-${meta.version}";
|
name = "urlwatch-${version}";
|
||||||
|
version = "2.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/thp/urlwatch/archive/${meta.version}.tar.gz";
|
owner = "thp";
|
||||||
sha256 = "09bn31gn03swi7yr3s1ql8x07hx96gap1ka77kk44kk0lvfxn55b";
|
repo = "urlwatch";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0fx964z73yv08b1lpymmjsigf6929zx9ax5bp34rcf2c5gk11l5m";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
appdirs
|
||||||
keyring
|
keyring
|
||||||
minidb
|
minidb
|
||||||
pycodestyle
|
pycodestyle
|
||||||
|
@ -16,11 +20,10 @@ python3Packages.buildPythonPackage rec {
|
||||||
requests
|
requests
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A tool for monitoring webpages for updates";
|
description = "A tool for monitoring webpages for updates";
|
||||||
homepage = https://thp.io/2008/urlwatch/;
|
homepage = https://thp.io/2008/urlwatch/;
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = [ stdenv.lib.maintainers.tv ];
|
maintainers = with maintainers; [ tv ];
|
||||||
version = "2.6";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue