lol

click-command-tree: 1.1.0 -> 1.1.1

+2 -11
+2 -11
pkgs/development/python-modules/click-command-tree/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , click 6 5 , pytestCheckHook 7 6 }: 8 7 9 8 buildPythonPackage rec { 10 9 pname = "click-command-tree"; 11 - version = "1.1.0"; 10 + version = "1.1.1"; 12 11 format = "setuptools"; 13 12 14 13 src = fetchFromGitHub { 15 14 owner = "whwright"; 16 15 repo = pname; 17 16 rev = version; 18 - hash = "sha256-vFOcn+ibyLZnhU3OQMtnHI04UqAY2/CCvhq4EEU4XFo="; 17 + hash = "sha256-uBp7462LutL8aFRFix3pbVYbSf1af6k0nW0J0HhJa1U="; 19 18 }; 20 - 21 - patches = [ 22 - (fetchpatch { 23 - name = "remove-setup-downloading-flake8.patch"; 24 - url = "https://github.com/whwright/click-command-tree/commit/1ecfcfa29bf01e1131e6ec712bd7338ac1283dc8.patch"; 25 - hash = "sha256-u5jsNfEo1+XNlkVGPCM/rsDPnYko6cr2z2si9nq+sLA="; 26 - }) 27 - ]; 28 19 29 20 propagatedBuildInputs = [ 30 21 click