depot/third_party/nixpkgs/pkgs/development/python-modules/rdflib-jsonld/default.nix
Default email 5e2a688410 Project import generated by Copybara.
GitOrigin-RevId: 5e2018f7b383aeca6824a30c0cd1978c9532a46a
2021-10-06 10:57:05 -03:00

23 lines
696 B
Nix

{ buildPythonPackage, fetchPypi, lib, rdflib, nose }:
buildPythonPackage rec {
pname = "rdflib-jsonld";
version = "0.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "107cd3019d41354c31687e64af5e3fd3c3e3fa5052ce635f5ce595fd31853a63";
};
nativeBuildInputs = [ nose ];
propagatedBuildInputs = [ rdflib ];
meta = with lib; {
homepage = "https://github.com/RDFLib/rdflib-jsonld";
license = licenses.bsdOriginal;
description = "rdflib extension adding JSON-LD parser and serializer";
maintainers = [ maintainers.koslambrou ];
# incomptiable with rdflib 6.0.0, half of the test suite fails with import and atrribute errors
broken = true;
};
}