587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
37 lines
731 B
Nix
37 lines
731 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, html5lib
|
|
, unittestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "microdata";
|
|
version = "0.8.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "edsu";
|
|
repo = "microdata";
|
|
rev = "v${version}";
|
|
hash = "sha256-BAygCLBLxZ033ZWRFSR52dSM2nPY8jXplDXQ8WW3KPo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
html5lib
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
unittestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "microdata" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for extracting html microdata";
|
|
mainProgram = "microdata";
|
|
homepage = "https://github.com/edsu/microdata";
|
|
license = licenses.cc0;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|