biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pyrss2gen / default.nix
blobf07f054cbce6c58a7ac096410b02791bc9bff45d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "pyrss2gen";
9   version = "1.1";
10   format = "setuptools";
12   src = fetchPypi {
13     pname = "PyRSS2Gen";
14     inherit version;
15     sha256 = "1rvf5jw9hknqz02rp1vg8abgb1lpa0bc65l7ylmlillqx7bswq3r";
16   };
18   # No tests in archive
19   doCheck = false;
21   meta = with lib; {
22     homepage = "http://www.dalkescientific.om/Python/PyRSS2Gen.html";
23     description = "Library for generating RSS 2.0 feeds";
24     license = licenses.bsd2;
25     maintainers = with maintainers; [ domenkozar ];
26   };