python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / python-modules / mechanize / default.nix
blob5b0ca1735cbd8708354a348f5dc181b2352613f4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , html5lib
5 }:
7 buildPythonPackage rec {
8   pname = "mechanize";
9   version = "0.4.8";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-XoasB3c1fgBusEzSj37Z+BHUjf+mA9OJGsbSuSKA3JE=";
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   };