summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2024-06-27 01:53:41 +0400
committerGitHub <noreply@github.com>2024-06-27 01:53:41 +0400
commit3892cc3abd4041bc2cdecef65486dc7b8c95dfba (patch)
treec27dc4b3e283ee1bf2d23cf852fd9a9f22d12d36 /pkgs
parent58dcfb86062d31015f504b2fc4b686193e5a4836 (diff)
parent4155ea3e4fd77c1a55d1ef86387026b5f1273b81 (diff)
Merge pull request #318305 from sikmir/osmnx
python3Packages.osmnx: 1.9.1 → 1.9.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/osmnx/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/osmnx/default.nix b/pkgs/development/python-modules/osmnx/default.nix
index 97488f2810fd..673296d719f5 100644
--- a/pkgs/development/python-modules/osmnx/default.nix
+++ b/pkgs/development/python-modules/osmnx/default.nix
@@ -21,21 +21,21 @@
buildPythonPackage rec {
pname = "osmnx";
- version = "1.9.1";
+ version = "1.9.3";
pyproject = true;
- disabled = pythonOlder "3.8";
+ disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "gboeing";
repo = "osmnx";
rev = "refs/tags/v${version}";
- hash = "sha256-od/0IuiK2CvrD0lfcTzkImK/5hcm6m61ULYzEtv/YeA=";
+ hash = "sha256-Tn800wFoPi5VkZmu9wUVM+EmCj/xxU2EJ6iwnA1VKXo=";
};
- nativeBuildInputs = [ hatchling ];
+ build-system = [ hatchling ];
- propagatedBuildInputs = [
+ dependencies = [
geopandas
matplotlib
networkx
@@ -56,11 +56,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "osmnx" ];
- meta = with lib; {
+ meta = {
description = "Package to easily download, construct, project, visualize, and analyze complex street networks from OpenStreetMap with NetworkX";
homepage = "https://github.com/gboeing/osmnx";
- changelog = "https://github.com/gboeing/osmnx/blob/v${version}/CHANGELOG.md";
- license = licenses.mit;
- maintainers = with maintainers; [ psyanticy ];
+ changelog = "https://github.com/gboeing/osmnx/blob/${src.rev}/CHANGELOG.md";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ psyanticy ];
};
}