python311Packages.aiorun: 2023.7.2 -> 2024.5.1

Diff: https://github.com/cjrh/aiorun/compare/refs/tags/v2023.7.2...v2024.5.1

Changelog: https://github.com/cjrh/aiorun/blob/v2024.5.1/CHANGES
This commit is contained in:
Fabian Affolter
2024-10-13 11:09:46 +02:00
committed by Martin Weinelt
parent 8e26cefa43
commit b41a2fe200
@@ -3,7 +3,6 @@
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
fetchpatch,
flit-core,
pygments,
pytestCheckHook,
@@ -12,7 +11,7 @@
buildPythonPackage rec {
pname = "aiorun";
version = "2023.7.2";
version = "2024.5.1";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -21,18 +20,9 @@ buildPythonPackage rec {
owner = "cjrh";
repo = "aiorun";
rev = "refs/tags/v${version}";
hash = "sha256-3AGsT8IUNi5SZHBsBfd7akj8eQ+xb0mrR7ydIr3T8gs=";
hash = "sha256-7wgsj44sX2Be/QyvG7KgQ/xSgsr+WPh7eeROeICSHGw=";
};
patches = [
# Raise flit-core version constrains
(fetchpatch {
# https://github.com/cjrh/aiorun/pull/85
url = "https://github.com/cjrh/aiorun/commit/a0c027ea331167712738e35ca70fefcd794e16d5.patch";
hash = "sha256-M1rcrkdFcoFa3IncPnJaRhnXbelyk56QnMGtmgB6bvk=";
})
];
build-system = [ flit-core ];
dependencies = [ pygments ];
@@ -42,7 +32,6 @@ buildPythonPackage rec {
uvloop
];
# allow for writable directory for darwin
preBuild = ''
export HOME=$TMPDIR
'';