Merge pull request #29819 from Moredread/mechanicalsoup-0.7.0
pythonPackages.MechanicalSoup: 0.4.0 -> 0.7.0
This commit is contained in:
commit
69886a4170
23
pkgs/development/python-modules/MechanicalSoup/default.nix
Normal file
23
pkgs/development/python-modules/MechanicalSoup/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ fetchPypi, buildPythonPackage, lib
|
||||||
|
, requests, beautifulsoup4, six }:
|
||||||
|
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "MechanicalSoup";
|
||||||
|
version = "0.7.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0wh93rml446ipx603n5z5i5bpan46pzliq6sw76d0ms9w7w2658d";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests beautifulsoup4 six ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A Python library for automating interaction with websites";
|
||||||
|
homepage = https://github.com/hickford/MechanicalSoup;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.jgillich ];
|
||||||
|
};
|
||||||
|
}
|
@ -11617,25 +11617,7 @@ in {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
MechanicalSoup = buildPythonPackage rec {
|
MechanicalSoup = callPackage ../development/python-modules/MechanicalSoup/default.nix { };
|
||||||
name = "MechanicalSoup-${version}";
|
|
||||||
version = "0.4.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/M/MechanicalSoup/${name}.zip";
|
|
||||||
sha256 = "02jkwly4gw1jqm55l4wwn0j0ggnysx55inw9j96bif5l49z5cacd";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ requests 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";
|
||||||
|
Loading…
Reference in New Issue
Block a user