pythonPackages.feedparser: refactor move to python-modules
This commit is contained in:
parent
18c345dfaa
commit
75aaf63f6c
25
pkgs/development/python-modules/feedparser/default.nix
Normal file
25
pkgs/development/python-modules/feedparser/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ 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 stdenv.lib; {
|
||||||
|
homepage = http://code.google.com/p/feedparser/;
|
||||||
|
description = "Universal feed parser";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ domenkozar ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -2372,24 +2372,7 @@ in {
|
|||||||
inherit (pkgs) glibcLocales;
|
inherit (pkgs) glibcLocales;
|
||||||
};
|
};
|
||||||
|
|
||||||
feedparser = buildPythonPackage (rec {
|
feedparser = callPackage ../development/python-modules/feedparser { };
|
||||||
name = "feedparser-5.2.1";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/f/feedparser/${name}.tar.gz";
|
|
||||||
sha256 = "1ycva69bqssalhqg45rbrfipz3l6hmycszy26k0351fhq990c0xx";
|
|
||||||
};
|
|
||||||
|
|
||||||
# lots of networking failures
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = http://code.google.com/p/feedparser/;
|
|
||||||
description = "Universal feed parser";
|
|
||||||
license = licenses.bsd2;
|
|
||||||
maintainers = with maintainers; [ domenkozar ];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
pyfribidi = buildPythonPackage rec {
|
pyfribidi = buildPythonPackage rec {
|
||||||
version = "0.11.0";
|
version = "0.11.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user