My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/mechanize/default.nix

26 lines
492 B

{ lib
, buildPythonPackage
, fetchPypi
, html5lib
}:
buildPythonPackage rec {
pname = "mechanize";
version = "0.4.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-XoasB3c1fgBusEzSj37Z+BHUjf+mA9OJGsbSuSKA3JE=";
};
propagatedBuildInputs = [ html5lib ];
doCheck = false;
meta = with lib; {
description = "Stateful programmatic web browsing in Python";
homepage = "https://github.com/python-mechanize/mechanize";
license = "BSD-style";
};
}