2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchurl, python2Packages }:
|
2014-12-24 03:30:54 +00:00
|
|
|
|
2016-11-09 10:52:53 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "rawdog";
|
2019-01-16 13:41:46 +00:00
|
|
|
version = "2.23";
|
2014-12-24 07:06:49 +00:00
|
|
|
|
2014-12-24 03:30:54 +00:00
|
|
|
src = fetchurl {
|
2019-08-31 11:41:23 +00:00
|
|
|
url = "https://offog.org/files/${pname}-${version}.tar.gz";
|
2019-01-16 13:41:46 +00:00
|
|
|
sha256 = "18nyg19mwxyqdnykplkqmzb4n27vvrhvp639zai8f81gg9vdbsjp";
|
2014-12-24 03:30:54 +00:00
|
|
|
};
|
|
|
|
|
2016-11-09 10:52:53 +00:00
|
|
|
propagatedBuildInputs = with python2Packages; [ feedparser ];
|
2014-12-24 19:13:39 +00:00
|
|
|
|
2020-12-09 14:55:50 +00:00
|
|
|
# Requested by @SuperSandro20001
|
|
|
|
pythonImportsCheck = [ "feedparser" ];
|
|
|
|
doCheck = false;
|
|
|
|
|
2014-12-24 19:13:39 +00:00
|
|
|
namePrefix = "";
|
2017-05-02 23:14:03 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://offog.org/code/rawdog/";
|
2016-01-04 03:23:32 +00:00
|
|
|
description = "RSS Aggregator Without Delusions Of Grandeur";
|
|
|
|
license = licenses.gpl2;
|
2017-05-02 23:14:03 +00:00
|
|
|
platforms = platforms.unix;
|
2014-12-24 03:30:54 +00:00
|
|
|
};
|
|
|
|
}
|