papis: 0.14.1 -> 0.15.0

Remove the patch taken from upstream between two releases.
This commit is contained in:
octvs
2026-02-14 14:59:00 +03:00
parent 44b6c16655
commit c07476ce4d
@@ -2,8 +2,6 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
fetchpatch2,
pythonAtLeast,
# build-system # build-system
hatchling, hatchling,
@@ -51,22 +49,14 @@
buildPythonPackage (finalAttrs: { buildPythonPackage (finalAttrs: {
pname = "papis"; pname = "papis";
version = "0.14.1"; version = "0.15.0";
pyproject = true; pyproject = true;
patches = [
(fetchpatch2 {
name = "fix-support-new-click-in-papisrunner.patch";
url = "https://github.com/papis/papis/commit/0e3ffff4bd1b62cdf0a9fdc7f54d6a2e2ab90082.patch?full_index=1";
hash = "sha256-KUw5U5izTTWqXHzGWLibtqHWAsVxla6SA8x6SJ07/zU=";
})
];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "papis"; owner = "papis";
repo = "papis"; repo = "papis";
tag = "v${finalAttrs.version}"; tag = "v${finalAttrs.version}";
hash = "sha256-V4YswLNYwfBYe/Td0PEeDG++ClZoF08yxXjUXuyppPI="; hash = "sha256-G+ryUMBUEbGxUG+u2YwZbT04IAzOmajtIPXP12MaXsY=";
}; };
build-system = [ hatchling ]; build-system = [ hatchling ];
@@ -129,6 +119,10 @@ buildPythonPackage (finalAttrs: {
disabledTests = [ disabledTests = [
# Require network access # Require network access
"test_add_folder_name_cli"
"test_add_link_cli"
"test_get_matching_importers_by_name"
"test_matching_importers_by_uri"
"test_yaml_unicode_dump" "test_yaml_unicode_dump"
# FileNotFoundError: Command not found: 'init' # FileNotFoundError: Command not found: 'init'
"test_git_cli" "test_git_cli"