python3.pkgs.ludios_wpull: fix constraint

This commit is contained in:
Frederik Rietdijk 2020-08-29 14:13:53 +02:00
parent c23c59594e
commit 792c220f48

View file

@ -8,15 +8,16 @@
, lxml , lxml
, namedlist , namedlist
, sqlalchemy , sqlalchemy
, tornado_4 , tornado
, Yapsy , Yapsy
, pythonAtLeast
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ludios_wpull"; pname = "ludios_wpull";
version = "3.0.7"; version = "3.0.7";
disabled = !isPy3k; disabled = (!isPy3k) || (pythonAtLeast "3.8");
src = fetchFromGitHub { src = fetchFromGitHub {
rev = version; rev = version;
@ -25,7 +26,7 @@ buildPythonPackage rec {
sha256 = "1j96avm0ynbazypzp766wh26n4qc73y7wgsiqfrdfl6x7rx20wgf"; sha256 = "1j96avm0ynbazypzp766wh26n4qc73y7wgsiqfrdfl6x7rx20wgf";
}; };
propagatedBuildInputs = [ chardet dnspython html5-parser lxml namedlist sqlalchemy tornado_4 Yapsy ]; propagatedBuildInputs = [ chardet dnspython html5-parser lxml namedlist sqlalchemy tornado Yapsy ];
# Test suite has tests that fail on all platforms # Test suite has tests that fail on all platforms
doCheck = false; doCheck = false;
@ -35,5 +36,6 @@ buildPythonPackage rec {
homepage = "https://github.com/ludios/wpull"; homepage = "https://github.com/ludios/wpull";
license = lib.licenses.gpl3; license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ ivan ]; maintainers = with lib.maintainers; [ ivan ];
broken = lib.versions.major tornado.version != "4";
}; };
} }