python27Packages.mechanize: enable on python 3

This commit is contained in:
Mario Rodas 2019-09-28 04:20:00 -05:00
parent 91a233570b
commit d459142317
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

@ -2,13 +2,11 @@
, buildPythonPackage
, fetchPypi
, html5lib
, isPy3k
}:
buildPythonPackage rec {
pname = "mechanize";
version = "0.4.3";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
@ -21,7 +19,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Stateful programmatic web browsing in Python";
homepage = http://wwwsearch.sourceforge.net/;
homepage = "https://github.com/python-mechanize/mechanize";
license = "BSD-style";
};