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