about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/extruct/default.nix
blob: c2156965d08b8e2e3fc731015046bdf47f9ef37d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonRelaxDepsHook
, html-text
, jstyleson
, lxml
, mf2py
, pyrdfa3
, rdflib
, six
, w3lib
, pytestCheckHook
, mock
}:

buildPythonPackage rec {
  pname = "extruct";
  version = "0.13.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "scrapinghub";
    repo = "extruct";
    rev = "v${version}";
    hash = "sha256-hf6b/tZLggHzgFmZ6aldZIBd17Ni7vCTIIzhNlyjvxw=";
  };

  nativeBuildInputs = [
    pythonRelaxDepsHook
  ];

  # rdflib-jsonld functionality is part of rdblib from version 6 onwards
  pythonRemoveDeps = [
    "rdflib-jsonld"
  ];

  propagatedBuildInputs = [
    html-text
    jstyleson
    lxml
    mf2py
    pyrdfa3
    rdflib
    six
    w3lib
  ];

  nativeCheckInputs = [
    mock
    pytestCheckHook
  ];

  pythonImportsCheck = [ "extruct" ];

  meta = with lib; {
    description = "Extract embedded metadata from HTML markup";
    homepage = "https://github.com/scrapinghub/extruct";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ambroisie ];
  };
}