nixpkgs/pkgs/applications/misc/archivy/default.nix

74 lines
1.5 KiB
Nix
Raw Normal View History

2021-04-15 23:15:40 +02:00
{ lib
, buildPythonApplication
, fetchPypi
, appdirs
, attrs
, beautifulsoup4
, click-plugins
, elasticsearch
, flask-compress
, flask_login
, flask_wtf
, html2text
, python-dotenv
, python-frontmatter
, requests
, tinydb
, validators
, werkzeug
, wtforms
}:
2020-11-14 16:24:32 +01:00
2021-03-19 08:49:30 +01:00
buildPythonApplication rec {
2020-11-14 16:24:32 +01:00
pname = "archivy";
2021-06-07 18:56:43 +02:00
version = "1.3.1";
2020-11-14 16:24:32 +01:00
src = fetchPypi {
inherit pname version;
2021-06-07 18:56:43 +02:00
sha256 = "sha256-g7H22zJOQuxSmoJ3373eRcbderC67vkuiLN1CgaytFM=";
2020-11-14 16:24:32 +01:00
};
# Relax some dependencies
postPatch = ''
substituteInPlace requirements.txt \
--replace 'WTForms ==' 'WTForms >=' \
--replace 'attrs == 20.2.0' 'attrs' \
2020-12-15 16:21:51 +01:00
--replace 'elasticsearch ==' 'elasticsearch >=' \
--replace 'python_dotenv ==' 'python_dotenv >=' \
2020-11-14 16:24:32 +01:00
--replace 'python_frontmatter == 0.5.0' 'python_frontmatter' \
2020-12-15 16:21:51 +01:00
--replace 'requests ==' 'requests >=' \
--replace 'validators ==' 'validators >=' \
2021-04-15 23:15:40 +02:00
--replace 'tinydb ==' 'tinydb >='
2020-11-14 16:24:32 +01:00
'';
propagatedBuildInputs = [
appdirs
attrs
beautifulsoup4
click-plugins
elasticsearch
2021-03-19 08:49:30 +01:00
flask-compress
2020-11-14 16:24:32 +01:00
flask_login
flask_wtf
2021-03-19 08:49:30 +01:00
html2text
2020-11-14 16:24:32 +01:00
python-dotenv
python-frontmatter
requests
2021-03-19 08:49:30 +01:00
tinydb
2020-11-14 16:24:32 +01:00
validators
2021-03-19 08:49:30 +01:00
werkzeug
2020-11-14 16:24:32 +01:00
wtforms
];
# __init__.py attempts to mkdir in read-only file system
doCheck = false;
meta = with lib; {
2020-11-14 16:24:32 +01:00
description = "Self-hosted knowledge repository";
homepage = "https://archivy.github.io";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
}