paperless-ngx: 2.18.4 -> 2.19.0 (#454533)
This commit is contained in:
@@ -28,13 +28,13 @@
|
||||
xorg,
|
||||
}:
|
||||
let
|
||||
version = "2.18.4";
|
||||
version = "2.19.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "paperless-ngx";
|
||||
repo = "paperless-ngx";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-sQ5laFO6DSg+4tF9jk2yuV0q2Vp7VC/+hu2XrVj8/bY=";
|
||||
hash = "sha256-t2T42K+F3PaMfNDFa3NF/rAcG6izKTXMIzgD68WdVFE=";
|
||||
};
|
||||
|
||||
python = python3.override {
|
||||
@@ -80,7 +80,7 @@ let
|
||||
pnpmDeps = pnpm.fetchDeps {
|
||||
inherit (finalAttrs) pname version src;
|
||||
fetcherVersion = 2;
|
||||
hash = "sha256-fs9a2uI/TnWalQ/qRb6m4d1CsU7O6VYCJMz2xWLdC0I=";
|
||||
hash = "sha256-AJp796oO8qOltPKndOXlLx1luCOfzsRSFscCUCe6MZo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@@ -168,10 +168,9 @@ python.pkgs.buildPythonApplication rec {
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"django-allauth"
|
||||
"django-guardian"
|
||||
"django-cors-headers"
|
||||
"drf-spectacular-sidecar"
|
||||
"filelock"
|
||||
"ocrmypdf"
|
||||
"rapidfuzz"
|
||||
"redis"
|
||||
];
|
||||
|
||||
@@ -207,6 +206,7 @@ python.pkgs.buildPythonApplication rec {
|
||||
django-guardian
|
||||
django-multiselectfield
|
||||
django-soft-delete
|
||||
django-treenode
|
||||
djangorestframework
|
||||
djangorestframework-guardian
|
||||
drf-spectacular
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
django,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-treenode";
|
||||
version = "0.23.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fabiocaccamo";
|
||||
repo = "django-treenode";
|
||||
tag = version;
|
||||
hash = "sha256-9AG8ntuXHB3jUHRKFDh7OOT5c0Nt8uAZnf5dR7xC/Bc=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
django
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"treenode"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Deciduous_tree: probably the best abstract model/admin for your tree based stuff";
|
||||
homepage = "https://github.com/fabiocaccamo/django-treenode";
|
||||
changelog = "https://github.com/fabiocaccamo/django-treenode/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ leona ];
|
||||
};
|
||||
}
|
||||
@@ -9,14 +9,14 @@
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "gotenberg-client";
|
||||
version = "0.11.0";
|
||||
version = "0.12.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stumpylog";
|
||||
repo = "gotenberg-client";
|
||||
tag = version;
|
||||
hash = "sha256-a/GXVhZtxGgmx5mb8hozbXAI9ecrl0c6BIz3BNekA8Q=";
|
||||
hash = "sha256-+beO1Pp+ikfk4gqpfvIEHCOPZGLanGX6Kw4mqJglJTI=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
@@ -4156,6 +4156,8 @@ self: super: with self; {
|
||||
|
||||
django-treebeard = callPackage ../development/python-modules/django-treebeard { };
|
||||
|
||||
django-treenode = callPackage ../development/python-modules/django-treenode { };
|
||||
|
||||
django-two-factor-auth = callPackage ../development/python-modules/django-two-factor-auth { };
|
||||
|
||||
django-types = callPackage ../development/python-modules/django-types { };
|
||||
|
||||
Reference in New Issue
Block a user