nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit e4d0795df5ba3e82c188f337fd2a0672176d5c74
parent 456d4c9dcc07cf023103a35277dd70f06b4a4769
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date:   Mon, 14 Jul 2025 00:41:30 +0400

Up

Diffstat:
Mpkgs/darwin/finch/default.nix | 6+++---
Mpkgs/geospatial/rio-color/default.nix | 10+++++++---
Mpkgs/geospatial/rio-mbtiles/default.nix | 2++
Mpkgs/geospatial/terracotta/default.nix | 1+
Mpkgs/geospatial/tilesets-cli/default.nix | 2++
Mpkgs/linguistics/zdict/default.nix | 2++
Mpkgs/misc/telegram-send/default.nix | 2++
Mpkgs/osm/cykhash/default.nix | 7++++---
Mpkgs/osm/pyrosm/default.nix | 9++++++---
9 files changed, 29 insertions(+), 12 deletions(-)

diff --git a/pkgs/darwin/finch/default.nix b/pkgs/darwin/finch/default.nix @@ -8,17 +8,17 @@ buildGoModule (finalAttrs: { pname = "finch"; - version = "1.8.3"; + version = "1.9.0"; src = fetchFromGitHub { owner = "runfinch"; repo = "finch"; tag = "v${finalAttrs.version}"; - hash = "sha256-x6qIUEKeetEIrI40F6IBItM1HA1lIiDBv0Y6SrABTNE="; + hash = "sha256-le8pTNZ242ErOM0C1Zo9x1KiJowkpBn9PE3NLqYsBzs="; fetchSubmodules = true; }; - vendorHash = "sha256-zlfeiyxEHLw4ABGrCznzJXUIZOqrOaAvci4ajdej8qI="; + vendorHash = "sha256-n53OWMjO6yxsZWog1ICshjqNW8RvU80q01sIsVE8RN0="; subPackages = [ "cmd/finch" ]; diff --git a/pkgs/geospatial/rio-color/default.nix b/pkgs/geospatial/rio-color/default.nix @@ -17,9 +17,11 @@ python3Packages.buildPythonPackage rec { hash = "sha256-iJ+whIk3ANop8i712dLE0mJyDMHGnE0tic23H6f67Xg="; }; - build-system = with python3Packages; [ setuptools ]; - - nativeBuildInputs = with python3Packages; [ cython ]; + build-system = with python3Packages; [ + setuptools + cython + numpy + ]; dependencies = with python3Packages; [ click @@ -27,6 +29,8 @@ python3Packages.buildPythonPackage rec { rio-mucho ]; + pythonRelaxDeps = true; + doCheck = false; nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; diff --git a/pkgs/geospatial/rio-mbtiles/default.nix b/pkgs/geospatial/rio-mbtiles/default.nix @@ -29,6 +29,8 @@ python3Packages.buildPythonApplication rec { shapely ]; + pythonRelaxDeps = true; + nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; disabledTests = [ diff --git a/pkgs/geospatial/terracotta/default.nix b/pkgs/geospatial/terracotta/default.nix @@ -33,6 +33,7 @@ python3Packages.buildPythonApplication rec { cachetools click click-spinner + color-operations flask flask-cors marshmallow diff --git a/pkgs/geospatial/tilesets-cli/default.nix b/pkgs/geospatial/tilesets-cli/default.nix @@ -35,6 +35,8 @@ python3Packages.buildPythonApplication rec { geojson ]; + pythonRelaxDeps = true; + doCheck = false; nativeCheckInputs = with python3Packages; [ pytestCheckHook diff --git a/pkgs/linguistics/zdict/default.nix b/pkgs/linguistics/zdict/default.nix @@ -24,6 +24,8 @@ python3Packages.buildPythonApplication rec { requests ]; + pythonRelaxDeps = true; + doCheck = false; meta = { diff --git a/pkgs/misc/telegram-send/default.nix b/pkgs/misc/telegram-send/default.nix @@ -26,6 +26,8 @@ python3Packages.buildPythonApplication { python-telegram-bot ]; + pythonRelaxDeps = true; + doCheck = false; meta = { diff --git a/pkgs/osm/cykhash/default.nix b/pkgs/osm/cykhash/default.nix @@ -16,9 +16,10 @@ python3Packages.buildPythonPackage { hash = "sha256-R6a19oExRVHSnfeEM5XsD77BPEWpC0BeNdep12YffN8="; }; - build-system = with python3Packages; [ setuptools ]; - - nativeBuildInputs = with python3Packages; [ cython ]; + build-system = with python3Packages; [ + setuptools + cython + ]; nativeCheckInputs = with python3Packages; [ numpy diff --git a/pkgs/osm/pyrosm/default.nix b/pkgs/osm/pyrosm/default.nix @@ -19,9 +19,10 @@ python3Packages.buildPythonPackage rec { hash = "sha256-eX6lOkprU/RkSz2+dGlRtdQQsI+m9GZyN/VfcIix79k="; }; - build-system = with python3Packages; [ setuptools ]; - - nativeBuildInputs = with python3Packages; [ cython ]; + build-system = with python3Packages; [ + setuptools + cython + ]; dependencies = with python3Packages; [ python-rapidjson @@ -31,6 +32,8 @@ python3Packages.buildPythonPackage rec { pyrobuf ]; + pythonRelaxDeps = true; + doCheck = false; nativeCheckInputs = with python3Packages; [ pytestCheckHook ];