From b41a2fe200092a4225e23c318d8896332f7c0bcb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 15 Jun 2024 19:51:53 +0200 Subject: [PATCH] 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 --- .../development/python-modules/aiorun/default.nix | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/aiorun/default.nix b/pkgs/development/python-modules/aiorun/default.nix index 26d02803c4d7..53cfadb2118a 100644 --- a/pkgs/development/python-modules/aiorun/default.nix +++ b/pkgs/development/python-modules/aiorun/default.nix @@ -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 '';