python3Packages.MechanicalSoup: fix alias

This commit is contained in:
arcnmx 2021-06-02 14:51:17 -07:00
parent 239da47116
commit ca97ae96f4
2 changed files with 4 additions and 1 deletions

View file

@ -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";

View file

@ -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
})