2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, beautifulsoup4 }:
|
2018-02-14 00:06:29 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "micawber";
|
2021-01-03 23:32:03 +00:00
|
|
|
version = "0.5.2";
|
2018-02-14 00:06:29 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-03 23:32:03 +00:00
|
|
|
sha256 = "ac2d737d8ff27ed01ea3825ed8806970e8137d7b342cef37b39b6dd17e6eb3a4";
|
2018-02-14 00:06:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ beautifulsoup4 ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://micawber.readthedocs.io/en/latest/";
|
2018-02-14 00:06:29 +00:00
|
|
|
description = "A small library for extracting rich content from urls";
|
|
|
|
license = licenses.mit;
|
|
|
|
longDescription = ''
|
|
|
|
micawber supplies a few methods for retrieving rich metadata
|
|
|
|
about a variety of links, such as links to youtube videos.
|
|
|
|
micawber also provides functions for parsing blocks of text and html
|
|
|
|
and replacing links to videos with rich embedded content.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ davidak ];
|
|
|
|
};
|
|
|
|
}
|