nixpkgs/pkgs/development/python-modules/feedgen/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

26 lines
712 B
Nix

{ lib, buildPythonPackage, fetchPypi, python-dateutil, lxml }:
buildPythonPackage rec {
pname = "feedgen";
version = "0.9.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf";
};
propagatedBuildInputs = [ python-dateutil lxml ];
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Python module to generate ATOM feeds, RSS feeds and Podcasts.";
downloadPage = "https://github.com/lkiesow/python-feedgen/releases";
homepage = "https://github.com/lkiesow/python-feedgen";
license = with licenses; [ bsd2 lgpl3 ];
maintainers = with maintainers; [ casey ];
};
}