mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, html5lib
|
|
, isodate
|
|
, networkx
|
|
, nose
|
|
, pyparsing
|
|
, tabulate
|
|
, pandas
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, SPARQLWrapper
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rdflib";
|
|
version = "6.1.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "8dbfa0af2990b98471dacbc936d6494c997ede92fd8ed693fb84ee700ef6f754";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
isodate
|
|
html5lib
|
|
pyparsing
|
|
SPARQLWrapper
|
|
];
|
|
|
|
checkInputs = [
|
|
networkx
|
|
pandas
|
|
nose
|
|
tabulate
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Requires network access
|
|
"api_key"
|
|
"BerkeleyDBTestCase"
|
|
"test_bad_password"
|
|
"test_service"
|
|
"testGuessFormatForParse"
|
|
] ++ lib.optional stdenv.isDarwin [
|
|
# Require loopback network access
|
|
"test_sparqlstore"
|
|
"test_sparqlupdatestore_mock"
|
|
"TestGraphHTTP"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"rdflib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for working with RDF";
|
|
homepage = "https://rdflib.readthedocs.io";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|