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
1 changed files with 1 additions and 3 deletions

View File

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