nixpkgs/pkgs/misc/pylode/default.nix

37 lines
743 B
Nix
Raw Normal View History

2020-08-20 17:23:22 +02:00
{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "pyLODE";
2021-08-31 20:50:14 +02:00
version = "2.12.0";
2020-08-20 17:23:22 +02:00
src = fetchFromGitHub {
owner = "RDFLib";
repo = pname;
rev = version;
2021-08-31 20:50:14 +02:00
sha256 = "sha256-X/YiJduAJNiceIrlCFwD2PFiMn3HVlzr9NzyDvYcql8=";
2020-08-20 17:23:22 +02:00
};
propagatedBuildInputs = with python3Packages; [
python-dateutil
2020-08-20 17:23:22 +02:00
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 ];
};
}