Merge pull request #69846 from r-ryantm/auto-update/python2.7-mechanize

python27Packages.mechanize: 0.4.2 -> 0.4.3
This commit is contained in:
Mario Rodas 2019-09-28 10:00:30 -05:00 committed by GitHub
commit a1e019ecdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,17 +2,15 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, html5lib , html5lib
, isPy3k
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "mechanize"; pname = "mechanize";
version = "0.4.2"; version = "0.4.3";
disabled = isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "b680ca1b4fabe5ef52024d120f40b8e2ed7d175ed4d67225d2c477dac7c7a58b"; sha256 = "1gyxkwjnabqf8xxnkj787xh2dpcnm858g369fnahdcz1wn5hdmyp";
}; };
propagatedBuildInputs = [ html5lib ]; propagatedBuildInputs = [ html5lib ];
@ -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";
}; };