Merge pull request #95863 from koslambrou/add-pylode-package

pylode: init at 2.8.6
This commit is contained in:
Doron Behar 2021-03-07 15:08:58 +02:00 committed by GitHub
commit 95c170b5cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,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; [
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 ];
};
}

View file

@ -16536,6 +16536,8 @@ in
pybind11 = pythonPackages.pybind11;
pylode = callPackage ../misc/pylode {};
python-qt = callPackage ../development/libraries/python-qt {
python = python27;
inherit (qt514) qmake qttools qtwebengine qtxmlpatterns;