biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / micawber / default.nix
blob6593253d647b30b75aceeccb2fc95db1b80333ff
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   beautifulsoup4,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "micawber";
11   version = "0.5.5";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-CsWBS2X/KngfsTlLkaI6ipX3NJK2u49wW67q2C6t1UM=";
19   };
21   propagatedBuildInputs = [ beautifulsoup4 ];
23   meta = with lib; {
24     homepage = "https://micawber.readthedocs.io/en/latest/";
25     description = "Module for extracting rich content from URLs";
26     license = licenses.mit;
27     longDescription = ''
28       micawber supplies a few methods for retrieving rich metadata
29       about a variety of links, such as links to youtube videos.
30       micawber also provides functions for parsing blocks of text and html
31       and replacing links to videos with rich embedded content.
32     '';
33     maintainers = with maintainers; [ davidak ];
34   };