blob: 56c854b026a04eb74dc66d6bf382a01672c4bdfb (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
html5lib,
rdflib,
requests,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "pyrdfa3";
version = "3.6.4";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-ZHEtGkvyGCllKzlxW62m58A7zxnLSfliwZCjj0YXIkM=";
};
build-system = [ setuptools ];
dependencies = [
rdflib
html5lib
requests
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pyRdfa" ];
meta = {
description = "RDFa 1.1 distiller/parser library";
homepage = "https://github.com/prrvchr/pyrdfa3/";
changelog = "https://github.com/prrvchr/pyrdfa3/releases/tag/v${finalAttrs.version}";
license = lib.licenses.w3c;
maintainers = with lib.maintainers; [ ambroisie ];
};
})
|