commit 30420bcf5c66b5f5c358a396036747705122d4ea
parent 8013454832d5163026c571fd98a5430eaf468b7e
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Tue, 24 Jun 2025 01:16:19 +0400
Up
Diffstat:
6 files changed, 26 insertions(+), 26 deletions(-)
diff --git a/flake.lock b/flake.lock
@@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
- "lastModified": 1750215678,
- "narHash": "sha256-Rc/ytpamXRf6z8UA2SGa4aaWxUXRbX2MAWIu2C8M+ok=",
+ "lastModified": 1750605355,
+ "narHash": "sha256-xT8cPLTxlktxI9vSdoBlAVK7dXgd8IK59j7ZwzkkhnI=",
"owner": "nixos",
"repo": "nixpkgs",
- "rev": "5395fb3ab3f97b9b7abca147249fa2e8ed27b192",
+ "rev": "3078b9a9e75f1790e6d6ef9955fdc6a2d1740cc6",
"type": "github"
},
"original": {
diff --git a/pkgs/development/python-modules/s2sphere/default.nix b/pkgs/development/python-modules/s2sphere/default.nix
@@ -1,10 +1,10 @@
{
lib,
fetchFromGitHub,
- python3Packages,
+ python312Packages,
}:
-python3Packages.buildPythonPackage {
+python312Packages.buildPythonPackage {
pname = "s2sphere";
version = "0.2.5";
@@ -15,7 +15,7 @@ python3Packages.buildPythonPackage {
hash = "sha256-6hNIuyLTcGcXpLflw2ajCOjel0IaZSFRlPFi81Z5LUo=";
};
- dependencies = with python3Packages; [ future ];
+ dependencies = with python312Packages; [ future ];
doCheck = false;
diff --git a/pkgs/gemini/agunua/default.nix b/pkgs/gemini/agunua/default.nix
@@ -1,28 +1,28 @@
{
lib,
fetchFromGitLab,
- python3Packages,
+ python312Packages,
}:
-python3Packages.buildPythonApplication rec {
+python312Packages.buildPythonApplication rec {
pname = "agunua";
- version = "1.7.1";
+ version = "1.7.2";
src = fetchFromGitLab {
domain = "framagit.org";
owner = "bortzmeyer";
repo = "agunua";
tag = "release-${version}";
- hash = "sha256-sVZ4HrFH3bL6FHn8B43rsya3vggIuCXdx6rPh+LG7MA=";
+ hash = "sha256-a/2906Hyr5rropuwxZQk1vXU0Ilaw1cPZjJlOdoJhsk=";
};
- dependencies = with python3Packages; [
+ dependencies = with python312Packages; [
pyopenssl
pysocks
netaddr
];
- nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
+ nativeCheckInputs = with python312Packages; [ pytestCheckHook ];
disabledTestPaths = [
"tests/test_egsam.py"
diff --git a/pkgs/geospatial/py-staticmaps/default.nix b/pkgs/geospatial/py-staticmaps/default.nix
@@ -1,11 +1,11 @@
{
lib,
fetchFromGitHub,
- python3Packages,
+ python312Packages,
s2sphere,
}:
-python3Packages.buildPythonApplication rec {
+python312Packages.buildPythonApplication rec {
pname = "py-staticmaps";
version = "0.5.0";
@@ -16,7 +16,7 @@ python3Packages.buildPythonApplication rec {
hash = "sha256-TWLPCM1tsWiRCLDhowC/uQrDUujNO3FuDgnUQXMcTm0=";
};
- dependencies = with python3Packages; [
+ dependencies = with python312Packages; [
appdirs
geographiclib
pillow
@@ -27,7 +27,7 @@ python3Packages.buildPythonApplication rec {
svgwrite
];
- nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
+ nativeCheckInputs = with python312Packages; [ pytestCheckHook ];
meta = {
description = "A python module to create static map images with markers, geodesic lines, etc";
diff --git a/pkgs/gpx/gpxtrackposter/default.nix b/pkgs/gpx/gpxtrackposter/default.nix
@@ -1,12 +1,12 @@
{
lib,
fetchFromGitHub,
- python3Packages,
+ python312Packages,
s2sphere,
unstableGitUpdater,
}:
-python3Packages.buildPythonApplication {
+python312Packages.buildPythonApplication {
pname = "gpxtrackposter";
version = "0-unstable-2024-06-02";
@@ -30,7 +30,7 @@ python3Packages.buildPythonApplication {
--subst-var out
'';
- dependencies = with python3Packages; [
+ dependencies = with python312Packages; [
appdirs
colour
geopy
@@ -45,7 +45,7 @@ python3Packages.buildPythonApplication {
setuptools
];
- nativeCheckInputs = with python3Packages; [
+ nativeCheckInputs = with python312Packages; [
pytestCheckHook
(pytest-mock.overrideAttrs (old: rec {
pname = "pytest-mock";
diff --git a/pkgs/mqtt/mqttwarn/default.nix b/pkgs/mqtt/mqttwarn/default.nix
@@ -2,11 +2,11 @@
lib,
stdenv,
fetchFromGitHub,
- python3Packages,
+ python312Packages,
replaceVars,
}:
-python3Packages.buildPythonApplication rec {
+python312Packages.buildPythonApplication rec {
pname = "mqttwarn";
version = "0.35.0";
pyproject = true;
@@ -28,12 +28,12 @@ python3Packages.buildPythonApplication rec {
})
];
- build-system = with python3Packages; [
+ build-system = with python312Packages; [
setuptools
versioningit
];
- dependencies = with python3Packages; [
+ dependencies = with python312Packages; [
attrs
docopt
funcy
@@ -50,7 +50,7 @@ python3Packages.buildPythonApplication rec {
"paho-mqtt"
];
- optional-dependencies = with python3Packages; {
+ optional-dependencies = with python312Packages; {
apprise = [ apprise ];
celery = [ celery ];
chromecast = [ pychromecast ];
@@ -64,7 +64,7 @@ python3Packages.buildPythonApplication rec {
doCheck = false;
nativeCheckInputs = [
- python3Packages.pytestCheckHook
+ python312Packages.pytestCheckHook
] ++ lib.flatten (lib.attrValues optional-dependencies);
meta = {