571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
}:
|
|
|
|
let
|
|
py = python3.override {
|
|
self = py;
|
|
packageOverrides = self: super: {
|
|
wtforms = super.wtforms.overridePythonAttrs (oldAttrs: rec {
|
|
version = "2.3.1";
|
|
|
|
src = fetchPypi {
|
|
pname = "WTForms";
|
|
inherit version;
|
|
sha256 = "sha256-hhoTs65SHWcA2sOydxlwvTVKY7pwQ+zDqCtSiFlqGXI=";
|
|
};
|
|
|
|
doCheck = false;
|
|
});
|
|
};
|
|
};
|
|
in
|
|
with py.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "archivy";
|
|
version = "1.7.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ns1Y0DqqnTAQMEt+oBJ/P2gqKqPsX9P3/Z4561qzuns";
|
|
};
|
|
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
attrs
|
|
beautifulsoup4
|
|
click-plugins
|
|
elasticsearch
|
|
flask-compress
|
|
flask-login
|
|
flask-wtf
|
|
html2text
|
|
python-dotenv
|
|
python-frontmatter
|
|
readability-lxml
|
|
requests
|
|
setuptools
|
|
tinydb
|
|
validators
|
|
wtforms
|
|
];
|
|
|
|
# __init__.py attempts to mkdir in read-only file system
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Self-hosted knowledge repository";
|
|
homepage = "https://archivy.github.io";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ siraben ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|