commit 3b14a21661d162ea9e02c14372dc7c6645779ec8
parent cc5cd01f8398a802f59f896c0af03aa962998bdc
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Thu, 10 Jul 2025 01:54:30 +0400
Up
Diffstat:
3 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
@@ -24,7 +24,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install nix
- uses: cachix/install-nix-action@v30
+ uses: cachix/install-nix-action@v31
with:
nix_path: "${{ matrix.nixPath }}"
extra_nix_config: |
@@ -33,7 +33,7 @@ jobs:
- name: Show nixpkgs version
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
- name: Setup cachix
- uses: cachix/cachix-action@v15
+ uses: cachix/cachix-action@v16
with:
name: ${{ matrix.cachixName }}
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
diff --git a/pkgs/data/maps/opentopomap/default.nix b/pkgs/data/maps/opentopomap/default.nix
@@ -9,7 +9,7 @@
mkgmap-splitter,
}:
let
- version = "250627";
+ version = "250706";
bounds = fetchwebarchive {
url = "https://www.thkukuk.de/osm/data/bounds-20250110.zip";
timestamp = "20250116113456";
@@ -22,7 +22,7 @@ let
};
armenia = fetchurl {
url = "https://download.geofabrik.de/asia/armenia-${version}.osm.pbf";
- hash = "sha256-KdnYWAppR4rbS1l8ZgXzOPDf3TnxhaltpSahUcLLU68=";
+ hash = "sha256-HXeh0ZT3qo2D0m03zmZKVoeGImasq8EZE24ci4s7EnA=";
};
in
stdenv.mkDerivation (finalAttrs: {
diff --git a/pkgs/geospatial/py-staticmaps/default.nix b/pkgs/geospatial/py-staticmaps/default.nix
@@ -17,6 +17,10 @@ python312Packages.buildPythonApplication rec {
hash = "sha256-TWLPCM1tsWiRCLDhowC/uQrDUujNO3FuDgnUQXMcTm0=";
};
+ postPatch = ''
+ sed -i '/^slugify/d' requirements.txt
+ '';
+
build-system = with python312Packages; [ setuptools ];
dependencies = with python312Packages; [
@@ -28,6 +32,7 @@ python312Packages.buildPythonApplication rec {
requests
s2sphere
svgwrite
+ types-requests
];
nativeCheckInputs = with python312Packages; [ pytestCheckHook ];