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 { lib 2 , fetchFromGitHub 3 , python3Packages 4 - , fetchpatch 5 }: 6 7 python3Packages.buildPythonApplication rec { 8 pname = "xpaste"; 9 - version = "1.5"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "ossobv"; 14 repo = pname; 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-Z9YxhVP+FUvWET91ob4SPSW+XX7/wzlgPr53vO517L4="; 17 }; 18 19 propagatedBuildInputs = with python3Packages; [ 20 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 ]; 31 32 # no tests, no python module to import, no version output to check
··· 1 { lib 2 , fetchFromGitHub 3 , python3Packages 4 }: 5 6 python3Packages.buildPythonApplication rec { 7 pname = "xpaste"; 8 + version = "1.6"; 9 format = "setuptools"; 10 11 src = fetchFromGitHub { 12 owner = "ossobv"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-eVnoLG+06UTOkvGhzL/XS4JBrEwbXYZ1fuNTIW7YAfE="; 16 }; 17 18 propagatedBuildInputs = with python3Packages; [ 19 xlib 20 ]; 21 22 # no tests, no python module to import, no version output to check