27 lines
847 B
Nix
27 lines
847 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, beautifulsoup4 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "micawber";
|
|
version = "0.3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0pnq6j8f144virhri0drgf0058x6qcxfd5yrb0ynbwr8djh326yn";
|
|
};
|
|
|
|
propagatedBuildInputs = [ beautifulsoup4 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://micawber.readthedocs.io/en/latest/;
|
|
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 ];
|
|
};
|
|
}
|