27 lines
859 B
Nix
27 lines
859 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, beautifulsoup4 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "micawber";
|
|
version = "0.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2e19cd5e9ce5b8b57714389e4b709af7dedc4f8f44e9df5566a9d3ccefaac38e";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|