nixpkgs/pkgs/development/python-modules/pyrdfa3/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

52 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, isPy27
, rdflib
, html5lib
}:
buildPythonPackage rec {
pname = "pyrdfa3";
version = "3.5.3";
disabled = isPy27;
src = fetchPypi {
inherit version;
pname = "pyRdfa3";
hash = "sha256-FXZjqSuH3zRbb2m94jXf9feXiRYI4S/h5PqNrWhxMa4=";
};
patches = [
(fetchpatch {
name = "CVE-2022-4396.patch";
url = "https://github.com/RDFLib/pyrdfa3/commit/ffd1d62dd50d5f4190013b39cedcdfbd81f3ce3e.patch";
hash = "sha256-prRrOwylYcEqKLr/8LIpyJ5Yyt+6+HTUqH5sQXU8tqc=";
})
];
postPatch = ''
substituteInPlace setup.py \
--replace "'html = pyRdfa.rdflibparsers:StructuredDataParser'" "'html = pyRdfa.rdflibparsers:StructuredDataParser'," \
--replace "'hturtle = pyRdfa.rdflibparsers:HTurtleParser'" "'hturtle = pyRdfa.rdflibparsers:HTurtleParser',"
'';
propagatedBuildInputs = [
rdflib
html5lib
];
# Does not work with python3
doCheck = false;
pythonImportsCheck = [ "pyRdfa" ];
meta = with lib; {
description = "RDFa 1.1 distiller/parser library";
homepage = "https://www.w3.org/2012/pyRdfa/";
license = licenses.w3c;
maintainers = with maintainers; [ ambroisie ];
};
}