From cc85ec87da069dd5e7fb7e584767cee5181a341a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Aug 2023 23:30:14 +0200 Subject: [PATCH] python311Packages.aioaseko: 0.1.0 -> 0.1.1 Diff: https://github.com/milanmeu/aioaseko/compare/refs/tags/v0.1.0...v0.1.1 Changelog: https://github.com/milanmeu/aioaseko/releases/tag/v0.1.1 --- .../python-modules/aioaseko/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/aioaseko/default.nix b/pkgs/development/python-modules/aioaseko/default.nix index e1781a9bf324..beea7e05a750 100644 --- a/pkgs/development/python-modules/aioaseko/default.nix +++ b/pkgs/development/python-modules/aioaseko/default.nix @@ -2,7 +2,6 @@ , aiohttp , buildPythonPackage , fetchFromGitHub -, fetchpatch , pythonOlder , setuptools , pyjwt @@ -10,7 +9,7 @@ buildPythonPackage rec { pname = "aioaseko"; - version = "0.1.0"; + version = "0.1.1"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -19,18 +18,9 @@ buildPythonPackage rec { owner = "milanmeu"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-RgIwA5/W7qtgI9ZTF4oDPuzSc+r04ZV3JOaNNFjS0pU="; + hash = "sha256-bjPl0yrRaTIEEuPV8NbWu2hx/es5bcu2tDBZV+95fUc="; }; - patches = [ - # Remove time, https://github.com/milanmeu/aioaseko/pull/6 - (fetchpatch { - name = "remove-time.patch"; - url = "https://github.com/milanmeu/aioaseko/commit/07d7ca43a2edd060e95a64737f072d98ba938484.patch"; - hash = "sha256-67QaqSy5mGY/22jWHOkymr0pFoiizVQAXlrqXRb3tG0="; - }) - ]; - nativeBuildInputs = [ setuptools ];