summary refs log tree commit diff
path: root/pkgs/development/python-modules/mechanicalsoup
diff options
context:
space:
mode:
authorarcnmx <arcnmx@users.noreply.github.com>2021-06-02 14:51:17 -0700
committerarcnmx <arcnmx@users.noreply.github.com>2021-06-02 14:55:29 -0700
commitca97ae96f4a651dd21a96d990ce1aedf1b4f0943 (patch)
tree877f88df5b34f38abd20809f1b289cae7b4e8acd /pkgs/development/python-modules/mechanicalsoup
parent239da47116274ee326a965d80b3ed1d3bf08af62 (diff)
downloadnixpkgs-ca97ae96f4a651dd21a96d990ce1aedf1b4f0943.tar
nixpkgs-ca97ae96f4a651dd21a96d990ce1aedf1b4f0943.tar.gz
nixpkgs-ca97ae96f4a651dd21a96d990ce1aedf1b4f0943.tar.bz2
nixpkgs-ca97ae96f4a651dd21a96d990ce1aedf1b4f0943.tar.lz
nixpkgs-ca97ae96f4a651dd21a96d990ce1aedf1b4f0943.tar.xz
nixpkgs-ca97ae96f4a651dd21a96d990ce1aedf1b4f0943.tar.zst
nixpkgs-ca97ae96f4a651dd21a96d990ce1aedf1b4f0943.zip
python3Packages.MechanicalSoup: fix alias
Diffstat (limited to 'pkgs/development/python-modules/mechanicalsoup')
-rw-r--r--pkgs/development/python-modules/mechanicalsoup/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/mechanicalsoup/default.nix b/pkgs/development/python-modules/mechanicalsoup/default.nix
index 3bf1acb182c..5f11d5cc9e8 100644
--- a/pkgs/development/python-modules/mechanicalsoup/default.nix
+++ b/pkgs/development/python-modules/mechanicalsoup/default.nix
@@ -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";