pythonPackages.ludios_wpull: init at 3.0.7
This commit is contained in:
parent
9295ffbf8e
commit
33b906bacf
39
pkgs/development/python-modules/ludios_wpull/default.nix
Normal file
39
pkgs/development/python-modules/ludios_wpull/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, isPy3k
|
||||
, chardet
|
||||
, dnspython
|
||||
, html5-parser
|
||||
, lxml
|
||||
, namedlist
|
||||
, sqlalchemy
|
||||
, tornado_4
|
||||
, Yapsy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ludios_wpull";
|
||||
version = "3.0.7";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "${version}";
|
||||
owner = "ludios";
|
||||
repo = "wpull";
|
||||
sha256 = "1j96avm0ynbazypzp766wh26n4qc73y7wgsiqfrdfl6x7rx20wgf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ chardet dnspython html5-parser lxml namedlist sqlalchemy tornado_4 Yapsy ];
|
||||
|
||||
# Test suite has tests that fail on all platforms
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Web crawler; fork of wpull used by grab-site";
|
||||
homepage = https://github.com/ludios/wpull;
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ ivan ];
|
||||
};
|
||||
}
|
@ -1872,6 +1872,8 @@ in {
|
||||
|
||||
lpod = callPackage ../development/python-modules/lpod { };
|
||||
|
||||
ludios_wpull = callPackage ../development/python-modules/ludios_wpull { };
|
||||
|
||||
luftdaten = callPackage ../development/python-modules/luftdaten { };
|
||||
|
||||
m2r = callPackage ../development/python-modules/m2r { };
|
||||
|
Loading…
Reference in New Issue
Block a user