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
This commit is contained in:
Fabian Affolter 2023-08-26 23:30:14 +02:00
parent 2e6b6acee9
commit cc85ec87da

View File

@ -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
];