summary refs log tree commit diff
path: root/pkgs/misc/pylode/default.nix
blob: 33e78bc152312868e3916ea34601e974b0f3a601 (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
{ lib
, python3Packages
, fetchFromGitHub
}:

python3Packages.buildPythonApplication rec {
  pname = "pyLODE";
  version = "2.8.6";

  src = fetchFromGitHub {
    owner = "RDFLib";
    repo = pname;
    rev = version;
    sha256 = "0zbk5lj9vlg32rmvw1himlw63kxd7sim7nzglrjs5zm6vpi4x5ch";
  };

  propagatedBuildInputs = with python3Packages; [
    python-dateutil
    falcon
    gunicorn
    isodate
    jinja2
    markdown
    rdflib
    rdflib-jsonld
    requests
    six
    beautifulsoup4
  ];

  meta = with lib; {
    description = "An OWL ontology documentation tool using Python and templating, based on LODE";
    homepage = "https://github.com/RDFLib/pyLODE";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ koslambrou ];
  };
}