about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyrss2gen/default.nix
blob: 4a7dc788caaacb80e8fa7b49adf51f3007fa81c4 (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "PyRSS2Gen";
  version = "1.1";

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

  # No tests in archive
  doCheck = false;

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

}