Skip to content

Commit 5128254

Browse files
Konstantinos Lambrou-LatreilleJon
authored andcommitted
added rdflib-jsonld python package
1 parent f05df9c commit 5128254

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{ buildPythonPackage, fetchPypi, lib, rdflib, nose }:
2+
3+
buildPythonPackage rec {
4+
pname = "rdflib-jsonld";
5+
version = "0.5.0";
6+
7+
src = fetchPypi {
8+
inherit pname version;
9+
sha256 = "4f7d55326405071c7bce9acf5484643bcb984eadb84a6503053367da207105ed";
10+
};
11+
12+
nativeBuildInputs = [ nose ];
13+
propagatedBuildInputs = [ rdflib ];
14+
15+
meta = with lib; {
16+
homepage = "https://github.com/RDFLib/rdflib-jsonld";
17+
license = licenses.bsdOriginal;
18+
description = "rdflib extension adding JSON-LD parser and serializer";
19+
maintainers = [ maintainers.koslambrou ];
20+
};
21+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5952,6 +5952,8 @@ in {
59525952

59535953
rdflib = callPackage ../development/python-modules/rdflib { };
59545954

5955+
rdflib-jsonld = callPackage ../development/python-modules/rdflib-jsonld { };
5956+
59555957
isodate = callPackage ../development/python-modules/isodate { };
59565958

59575959
owslib = callPackage ../development/python-modules/owslib { };

0 commit comments

Comments
 (0)