lol

python310Packages.micawber: disable on unsupported python releases

authored by

Fabian Affolter and committed by
GitHub
2bd7b1e1 4b2a77fd

+13 -3
+13 -3
pkgs/development/python-modules/micawber/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, beautifulsoup4 }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , beautifulsoup4 5 + , pythonOlder 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "micawber"; 5 10 version = "0.5.5"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 6 14 7 15 src = fetchPypi { 8 16 inherit pname version; 9 17 sha256 = "sha256-CsWBS2X/KngfsTlLkaI6ipX3NJK2u49wW67q2C6t1UM="; 10 18 }; 11 19 12 - propagatedBuildInputs = [ beautifulsoup4 ]; 20 + propagatedBuildInputs = [ 21 + beautifulsoup4 22 + ]; 13 23 14 24 meta = with lib; { 15 25 homepage = "https://micawber.readthedocs.io/en/latest/"; 16 - description = "A small library for extracting rich content from urls"; 26 + description = "Module for extracting rich content from URLs"; 17 27 license = licenses.mit; 18 28 longDescription = '' 19 29 micawber supplies a few methods for retrieving rich metadata