python313Packages.sharkiq: 1.4.0 -> 1.4.1

Changelog: https://github.com/JeffResc/sharkiq/releases/tag/v1.4.1
This commit is contained in:
Fabian Affolter
2025-10-08 12:36:23 +02:00
parent 5ea27cd691
commit aa6bf9978b
@@ -6,21 +6,30 @@
fetchFromGitHub,
requests,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "sharkiq";
version = "1.4.0";
version = "1.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "JeffResc";
repo = "sharkiq";
tag = "v${version}";
hash = "sha256-XPqrEE/GwIn4sqbhETRPhBBPkH8Je+LKoDV+qDb3Ry8=";
hash = "sha256-AGulExhA+dmRbCjrLJngRee8yT+q/djyNe7toY1FeFg=";
};
build-system = [ setuptools ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools-scm>=9.2.0" "setuptools-scm"
'';
build-system = [
setuptools
setuptools-scm
];
dependencies = [
aiohttp