summary refs log tree commit diff
path: root/pkgs/development/python-modules/feedparser/default.nix
blob: bf921207fc5c09ea953386b57e4f6e252bda8505 (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
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, sgmllib3k
}:

buildPythonPackage rec {
  pname = "feedparser";
  version = "6.0.6";
  disabled = isPy27;

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

  propagatedBuildInputs = [ sgmllib3k ];

  checkPhase = ''
    python -Wd tests/runtests.py
  '';

  meta = with lib; {
    homepage = "https://github.com/kurtmckee/feedparser";
    description = "Universal feed parser";
    license = licenses.bsd2;
    maintainers = with maintainers; [ domenkozar ];
  };

}