about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/rdflib-jsonld/default.nix
blob: 9a0b02c329f72191258bfb4ce53918e2fe0c97f7 (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
{ buildPythonPackage, fetchPypi, lib, rdflib, nose }:

buildPythonPackage rec {
  pname = "rdflib-jsonld";
  version = "0.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4f7d55326405071c7bce9acf5484643bcb984eadb84a6503053367da207105ed";
  };

  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;
  };
}