1{ lib
2, buildPythonPackage
3, fetchPypi
4, html5lib
5}:
6
7buildPythonPackage rec {
8 pname = "mechanize";
9 version = "0.4.8";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "sha256-XoasB3c1fgBusEzSj37Z+BHUjf+mA9OJGsbSuSKA3JE=";
14 };
15
16 propagatedBuildInputs = [ html5lib ];
17
18 doCheck = false;
19
20 meta = with lib; {
21 description = "Stateful programmatic web browsing in Python";
22 homepage = "https://github.com/python-mechanize/mechanize";
23 license = "BSD-style";
24 };
25
26}