blob: 76b1c502df8044e9c2d37bb14cbecb2defe8c137 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
keepalive,
}:
buildPythonPackage rec {
pname = "sparqlwrapper";
version = "2.0.0";
format = "setuptools";
src = fetchPypi {
pname = "SPARQLWrapper";
inherit version;
hash = "sha256-P+0+vMd2F6SnTSZEuG/Yjg8y5/cAOseyszTAJiAXMfE=";
};
# break circular dependency loop
patchPhase = ''
sed -i '/rdflib/d' setup.cfg
'';
# Doesn't actually run tests
doCheck = false;
propagatedBuildInputs = [ keepalive ];
meta = {
description = "This is a wrapper around a SPARQL service. It helps in creating the query URI and, possibly, convert the result into a more manageable format";
mainProgram = "rqw";
homepage = "http://rdflib.github.io/sparqlwrapper";
license = lib.licenses.w3c;
};
}
|