summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyrss2gen/default.nix
blob: 0f525c4fef797decd3d45f358e96672831667528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "pyrss2gen";
  version = "1.1";
  format = "setuptools";

  src = fetchPypi {
    pname = "PyRSS2Gen";
    inherit version;
    sha256 = "1rvf5jw9hknqz02rp1vg8abgb1lpa0bc65l7ylmlillqx7bswq3r";
  };

  # No tests in archive
  doCheck = false;

  meta = {
    homepage = "http://www.dalkescientific.om/Python/PyRSS2Gen.html";
    description = "Library for generating RSS 2.0 feeds";
    license = lib.licenses.bsd2;
    maintainers = [ ];
  };
}