Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / mechanize / default.nix
blob7eb119fa955996a6a3d5b3f50949e676babdc0ea
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , html5lib
5 }:
7 buildPythonPackage rec {
8   pname = "mechanize";
9   version = "0.4.5";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "6355c11141f6d4b54a17fc2106944806b5db2711e60b120d15d83db438c333fd";
14   };
16   propagatedBuildInputs = [ html5lib ];
18   doCheck = false;
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   };