python3Packages.sharkiq: 1.5.0 -> 1.5.1 (#543644)

This commit is contained in:
Fabian Affolter
2026-07-20 07:17:14 +00:00
committed by GitHub
@@ -9,16 +9,16 @@
setuptools-scm,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "sharkiq";
version = "1.5.0";
version = "1.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "JeffResc";
repo = "sharkiq";
tag = "v${version}";
hash = "sha256-8BLPIvx4r5i0q5dPUdwB2KgPfGC6n14RFzWxJXpBD1Y=";
tag = "v${finalAttrs.version}";
hash = "sha256-24/cJJ4RaM6twVorJ0pQ/LDHZBTP/rxCiwNozNLS82M=";
};
postPatch = ''
@@ -45,8 +45,8 @@ buildPythonPackage rec {
meta = {
description = "Python API for Shark IQ robots";
homepage = "https://github.com/JeffResc/sharkiq";
changelog = "https://github.com/JeffResc/sharkiq/releases/tag/${src.tag}";
changelog = "https://github.com/JeffResc/sharkiq/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})