evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / geoparquet / default.nix
blobd4b54610c506b583d5c17ddd980700e3db9d08e8
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   pandas,
7   pyarrow,
8   pyproj,
9   shapely,
10   geopandas,
11   pytestCheckHook,
14 buildPythonPackage {
15   pname = "geoparquet";
16   version = "0.7.5";
17   pyproject = true;
19   src = fetchFromGitHub {
20     owner = "darcy-r";
21     repo = "geoparquet-python";
22     rev = "b09b12dd0ebc34d73f082c3d97ccb69a889167e3";
23     hash = "sha256-WGZfDQh7Abh83n8jsCGr41IlKKq7QVDlauuWi20llh8=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     pandas
30     pyarrow
31     pyproj
32     shapely
33     geopandas
34   ];
36   nativeCheckInputs = [ pytestCheckHook ];
37   pythonImportsCheck = [ "geoparquet" ];
39   doCheck = false; # no tests
41   meta = {
42     description = "API between Parquet files and GeoDataFrames for fast input/output of GIS data";
43     homepage = "https://github.com/darcy-r/geoparquet-python";
44     license = lib.licenses.mit;
45     maintainers = with lib.maintainers; [ sigmanificient ];
46   };