about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/feedparser/5.nix
blob: a79048c55254fb7018982719fd9e01ef7403188e (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
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "feedparser";
  version = "5.2.1";

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

  # lots of networking failures
  doCheck = false;

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