commit 016166e11a91891c20ff445ceee8c0a9bc6f51eb
parent 1cc1f3440250f60fc6295ff01906e979460f951f
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Tue, 1 Sep 2026 22:51:17 +0400
Up
Diffstat:
4 files changed, 11 insertions(+), 15 deletions(-)
diff --git a/pkgs/by-name/gp/gpx-player/package.nix b/pkgs/by-name/gp/gpx-player/package.nix
@@ -6,14 +6,14 @@
python3Packages.buildPythonApplication (finalAttrs: {
pname = "gpx-player";
- version = "0.2.1";
+ version = "0.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "kirienko";
repo = "gpx-player";
tag = "v${finalAttrs.version}";
- hash = "sha256-2teWg6DKO05T1GZV2N5PIyItRhCXPJBXbBOBmCWvyi8=";
+ hash = "sha256-IPaRxtp1/YHtCxSjSvfBY2NemvL/FJW9p5xAAXNR2d0=";
};
build-system = with python3Packages; [ setuptools ];
@@ -30,6 +30,8 @@ python3Packages.buildPythonApplication (finalAttrs: {
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
+ disabledTests = [ "test_wheel_includes_playback_assets" ];
+
meta = {
description = "Visualise & animate GPX race tracks";
homepage = "https://github.com/kirienko/gpx-player";
diff --git a/pkgs/by-name/mq/mqtt-cli/package.nix b/pkgs/by-name/mq/mqtt-cli/package.nix
@@ -8,7 +8,7 @@
stdenv.mkDerivation (finalAttrs: {
pname = "mqtt-cli";
- version = "4.54.0";
+ version = "4.55.0";
__structuredAttrs = true;
@@ -16,7 +16,7 @@ stdenv.mkDerivation (finalAttrs: {
owner = "hivemq";
repo = "mqtt-cli";
tag = "v${finalAttrs.version}";
- hash = "sha256-TAnSeA2g3jjeiznYIYgG2VaTGqPXByJUofSqdAfAA5s=";
+ hash = "sha256-bqqA11RJ04ZyjcuiQCP07G7uz6DSBxOSso4wynyRlGI=";
name = "mqtt-cli-${finalAttrs.version}.jar";
};
diff --git a/pkgs/by-name/py/pycouchdb/package.nix b/pkgs/by-name/py/pycouchdb/package.nix
@@ -6,23 +6,17 @@
python3Packages.buildPythonPackage (finalAttrs: {
pname = "pycouchdb";
- version = "1.16.0";
+ version = "1.17.1";
pyproject = true;
src = fetchFromGitHub {
owner = "histrio";
repo = "py-couchdb";
tag = "v${finalAttrs.version}";
- hash = "sha256-jcDES8PC02F5eel2KThYZFXKzUm70UqktG521lt+Dj0=";
+ hash = "sha256-KaY/ZotUYpaU5eWe2HC44bC1thnZ3V9AjvzQ+XMxBug=";
};
- postPatch = ''
- substituteInPlace pyproject.toml \
- --replace-fail "poetry.masonry" "poetry.core.masonry" \
- --replace-fail "poetry>=" "poetry-core>="
- '';
-
- build-system = with python3Packages; [ poetry-core ];
+ build-system = with python3Packages; [ hatchling ];
pythonRelaxDeps = true;
diff --git a/pkgs/embedded/embox/default.nix b/pkgs/embedded/embox/default.nix
@@ -30,13 +30,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "embox-${arch}-qemu";
- version = "0.7.1";
+ version = "0.7.2";
src = fetchFromGitHub {
owner = "embox";
repo = "embox";
tag = "v${finalAttrs.version}";
- hash = "sha256-lMeYOPhjQmbTXhcs99XQ8RLij6fkUZ0X3x6QN6qnBXQ=";
+ hash = "sha256-lySO7VZJzvTwn1gMNo0LJOQ5vXCN5Wyea4DTzP46Y8Y=";
};
patches = [ ./0001-fix-build.patch ];