mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #95863 from koslambrou/add-pylode-package
pylode: init at 2.8.6
This commit is contained in:
commit
95c170b5cb
2 changed files with 39 additions and 0 deletions
37
pkgs/misc/pylode/default.nix
Normal file
37
pkgs/misc/pylode/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue