From d4591423179b409d939fa05800e2a3875b44823e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 28 Sep 2019 04:20:00 -0500 Subject: [PATCH] python27Packages.mechanize: enable on python 3 --- pkgs/development/python-modules/mechanize/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/mechanize/default.nix b/pkgs/development/python-modules/mechanize/default.nix index 6a408e77e9f1..882872d47e14 100644 --- a/pkgs/development/python-modules/mechanize/default.nix +++ b/pkgs/development/python-modules/mechanize/default.nix @@ -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"; };