Merge pull request #125426 from arcnmx/mechanical-soup-alias
python3Packages.MechanicalSoup: fix alias
This commit is contained in:
commit
790581291c
2 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, beautifulsoup4
|
||||
, buildPythonPackage
|
||||
, pythonAtLeast
|
||||
, fetchFromGitHub
|
||||
, lxml
|
||||
, pytest-httpbin
|
||||
|
@ -14,6 +15,8 @@ buildPythonPackage rec {
|
|||
pname = "mechanicalsoup";
|
||||
version = "1.1.0";
|
||||
|
||||
disabled = ! pythonAtLeast "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "MechanicalSoup";
|
||||
repo = "MechanicalSoup";
|
||||
|
|
|
@ -36,5 +36,5 @@ mapAliases ({
|
|||
smart_open = smart-open; # added 2021-03-14
|
||||
google_api_python_client = google-api-python-client; # added 2021-03-19
|
||||
googleapis_common_protos = googleapis-common-protos; # added 2021-03-19
|
||||
mechanicalsoup = MechanicalSoup; # added 2021-06-01
|
||||
MechanicalSoup = mechanicalsoup; # added 2021-06-01
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue