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

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

  src = fetchFromGitHub {
    owner = "RDFLib";
    repo = pname;
    rev = version;
    sha256 = "sha256-X/YiJduAJNiceIrlCFwD2PFiMn3HVlzr9NzyDvYcql8=";
  };

  propagatedBuildInputs = with python3Packages; [
    python-dateutil
    falcon
    gunicorn
    isodate
    jinja2
    markdown
    rdflib
    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 ];
  };
}