4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, isPy27
|
|
, pandas, shapely, fiona, descartes, pyproj
|
|
, pytestCheckHook, Rtree, fetchpatch }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "geopandas";
|
|
version = "0.8.1";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "geopandas";
|
|
repo = "geopandas";
|
|
rev = "v${version}";
|
|
sha256 = "0618p0s0biisxk2s0h43hkc3bs1nwjk84rxbfyd6brfvs9yx4vq7";
|
|
};
|
|
|
|
patches = [
|
|
# Fix for test test_numerical_operations: https://github.com/geopandas/geopandas/issues/1541
|
|
(fetchpatch {
|
|
url = "https://github.com/geopandas/geopandas/pull/1544/commits/6ce868a33a2f483b071089d51e178030fa4414d0.patch";
|
|
sha256 = "1sjgxrqgbhz5krx51hrv230ywszcdl6z8q3bj6830kfad8n8b5dq";
|
|
})
|
|
# Fix GeoJSON for Fiona>=1.8.16 (Sep. 7, 2020).
|
|
# https://github.com/geopandas/geopandas/issues/1606
|
|
# Will be included in next upstream release after 0.8.1
|
|
(fetchpatch {
|
|
url = "https://github.com/geopandas/geopandas/commit/72427d3d8c128039bfce1d54a76c0b652887b276.patch";
|
|
sha256 = "1726mrpddgmba0ngff73a5bsb6ywpsg63a2pdd2grp9339bgvi4a";
|
|
})
|
|
];
|
|
|
|
checkInputs = [ pytestCheckHook Rtree ];
|
|
disabledTests = [ "web" ];
|
|
pytestFlagsArray = [ "geopandas" ];
|
|
|
|
propagatedBuildInputs = [
|
|
pandas
|
|
shapely
|
|
fiona
|
|
descartes
|
|
pyproj
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python geospatial data analysis framework";
|
|
homepage = "https://geopandas.org";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ knedlsepp ];
|
|
};
|
|
}
|