python-packages: MechanicalSoup: init at 0.4.0

This commit is contained in:
Jakob Gillich 2015-12-05 03:49:17 +01:00
parent 3eab158fb8
commit 686f1ff924

View File

@ -9866,6 +9866,25 @@ in modules // {
}; };
}); });
MechanicalSoup = buildPythonPackage rec {
name = "MechanicalSoup-${version}";
version = "0.4.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/M/MechanicalSoup/${name}.zip";
sha256 = "02jkwly4gw1jqm55l4wwn0j0ggnysx55inw9j96bif5l49z5cacd";
};
propagatedBuildInputs = with self; [ requests2 beautifulsoup4 six ];
meta = {
description = "A Python library for automating interaction with websites";
homepage = https://github.com/hickford/MechanicalSoup;
license = licenses.mit;
maintainers = with maintainers; [ jgillich ];
};
};
meld3 = buildPythonPackage rec { meld3 = buildPythonPackage rec {
name = "meld3-1.0.0"; name = "meld3-1.0.0";