xpaste: 1.5 -> 1.6

patch is now included in new upstream release

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>

+2 -12
+2 -12
pkgs/tools/text/xpaste/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , python3Packages 4 - , fetchpatch 5 4 }: 6 5 7 6 python3Packages.buildPythonApplication rec { 8 7 pname = "xpaste"; 9 - version = "1.5"; 8 + version = "1.6"; 10 9 format = "setuptools"; 11 10 12 11 src = fetchFromGitHub { 13 12 owner = "ossobv"; 14 13 repo = pname; 15 14 rev = "refs/tags/v${version}"; 16 - hash = "sha256-Z9YxhVP+FUvWET91ob4SPSW+XX7/wzlgPr53vO517L4="; 15 + hash = "sha256-eVnoLG+06UTOkvGhzL/XS4JBrEwbXYZ1fuNTIW7YAfE="; 17 16 }; 18 17 19 18 propagatedBuildInputs = with python3Packages; [ 20 19 xlib 21 - ]; 22 - 23 - patches = [ 24 - (fetchpatch { 25 - # https://github.com/ossobv/xpaste/pull/6 26 - name = "fix-function-call-after-wayland-update.patch"; 27 - url = "https://github.com/ossobv/xpaste/commit/47412738dad4b5fc8bc287ead23c8440bfdc547d.patch"; 28 - hash = "sha256-t4LZG600AsFTtKjXCxioGcAP4YcHIdQ/fVMIYjsunuA="; 29 - }) 30 20 ]; 31 21 32 22 # no tests, no python module to import, no version output to check