nixpkgs/pkgs/development/python-modules/micawber/default.nix

27 lines
859 B
Nix
Raw Normal View History

2018-02-14 00:06:29 +00:00
{ stdenv, buildPythonPackage, fetchPypi, beautifulsoup4 }:
buildPythonPackage rec {
pname = "micawber";
2019-02-14 07:37:20 +00:00
version = "0.4.0";
2018-02-14 00:06:29 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:20 +00:00
sha256 = "2e19cd5e9ce5b8b57714389e4b709af7dedc4f8f44e9df5566a9d3ccefaac38e";
2018-02-14 00:06:29 +00:00
};
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 ];
};
}