nixpkgs/pkgs/development/python-modules/osmnx/default.nix

29 lines
918 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub, geopandas, descartes, matplotlib, networkx, numpy
, pandas, requests, Rtree, shapely, folium, scikitlearn, scipy}:
2018-09-19 16:14:37 +01:00
buildPythonPackage rec {
pname = "osmnx";
version = "0.9";
2018-09-19 16:14:37 +01:00
src = fetchFromGitHub {
owner = "gboeing";
repo = pname;
rev = "v${version}";
sha256 = "1k3y5kl4k93vxaxyanc040x44s2fyyc3m1ndy2j3kg0037z8ad4z";
2018-09-19 16:14:37 +01:00
};
propagatedBuildInputs = [ geopandas descartes matplotlib networkx numpy pandas requests Rtree shapely folium scikitlearn scipy ];
# requires network
2018-09-19 16:14:37 +01:00
doCheck = false;
pythonImportsCheck = [ "osmnx" ];
2018-09-19 16:14:37 +01:00
meta = with lib; {
2018-09-19 16:14:37 +01:00
description = "A package to easily download, construct, project, visualize, and analyze complex street networks from OpenStreetMap with NetworkX.";
homepage = "https://github.com/gboeing/osmnx";
2018-09-19 16:14:37 +01:00
license = licenses.mit;
maintainers = with maintainers; [ psyanticy ];
};
}