summary refs log tree commit diff
path: root/pkgs/development/python-modules/nipype/neurdflib.nix
blob: 0a266ff7bf826366583123abfce664a915808403 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchPypi
, isodate
, html5lib
, SPARQLWrapper
, networkx
, nose
, python
}:

buildPythonPackage rec {
  pname = "neurdflib";
  version = "5.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d34493cee15029ff5db16157429585ff863ba5542675a4d8a94a0da1bc6e3a50";
  };

  propagatedBuildInputs = [ isodate html5lib SPARQLWrapper ];

  checkInputs = [ networkx nose ];

  # Python 2 syntax
  # Failing doctest
  doCheck = false;

  checkPhase = ''
    ${python.interpreter} run_tests.py
  '';

  meta = with lib; {
    description = "A temporary convenience package for changes waiting to be merged into the primary rdflib repo";
    homepage = "https://pypi.org/project/neurdflib";
    license = licenses.bsd3;
  };
}