nixpkgs/pkgs/servers/nextcloud/news-updater.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
642 B
Nix
Raw Normal View History

{ lib, fetchurl, python3Packages, php }:
2016-10-02 10:21:02 +00:00
python3Packages.buildPythonApplication rec {
pname = "nextcloud-news-updater";
version = "11.0.0";
2016-10-02 10:21:02 +00:00
src = fetchurl {
url = "mirror://pypi/n/nextcloud_news_updater/nextcloud_news_updater-${version}.tar.gz";
sha256 = "bc2055c16f0dbf610b7e17650508a18fa5a1de652ecdf69c5d4073c97376e9cf";
2016-10-02 10:21:02 +00:00
};
doCheck = false;
propagatedBuildInputs = [ php ];
meta = {
description = "Fast parallel feed updater for the Nextcloud news app";
homepage = "https://github.com/nextcloud/news-updater";
2021-01-15 07:07:56 +00:00
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ schneefux ];
2016-10-02 10:21:02 +00:00
};
}