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

27 lines
862 B
Nix
Raw Normal View History

2018-02-14 00:06:29 +00:00
{ stdenv, buildPythonPackage, fetchPypi, beautifulsoup4 }:
buildPythonPackage rec {
pname = "micawber";
2019-10-16 09:43:09 +00:00
version = "0.5.1";
2018-02-14 00:06:29 +00:00
src = fetchPypi {
inherit pname version;
2019-10-16 09:43:09 +00:00
sha256 = "5e1e6fbab5bfc1edc6d575b900707c24a3484c51cf2e01f059a7e070724a3633";
2018-02-14 00:06:29 +00:00
};
propagatedBuildInputs = [ beautifulsoup4 ];
meta = with stdenv.lib; {
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 ];
};
}