ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
102 lines
1.8 KiB
Nix
102 lines
1.8 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, cython_3
|
|
, gdal
|
|
, oldest-supported-numpy
|
|
, setuptools
|
|
, wheel
|
|
, attrs
|
|
, certifi
|
|
, click
|
|
, click-plugins
|
|
, cligj
|
|
, munch
|
|
, shapely
|
|
, boto3
|
|
, pytestCheckHook
|
|
, pytz
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fiona";
|
|
version = "1.9.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Toblerity";
|
|
repo = "Fiona";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-MboM3IwGF8cuz+jMQ3QVZFAHjpspQ6kVJincq7OEkCM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython_3
|
|
gdal # for gdal-config
|
|
oldest-supported-numpy
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
buildInputs = [
|
|
gdal
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
certifi
|
|
click
|
|
cligj
|
|
click-plugins
|
|
munch
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
calc = [ shapely ];
|
|
s3 = [ boto3 ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytz
|
|
] ++ passthru.optional-dependencies.s3;
|
|
|
|
preCheck = ''
|
|
rm -r fiona # prevent importing local fiona
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
# Tests with gdal marker do not test the functionality of Fiona,
|
|
# but they are used to check GDAL driver capabilities.
|
|
"-m 'not gdal'"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Some tests access network, others test packaging
|
|
"http"
|
|
"https"
|
|
"wheel"
|
|
|
|
# see: https://github.com/Toblerity/Fiona/issues/1273
|
|
"test_append_memoryfile_drivers"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"fiona"
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/Toblerity/Fiona/blob/${src.rev}/CHANGES.txt";
|
|
description = "OGR's neat, nimble, no-nonsense API for Python";
|
|
mainProgram = "fio";
|
|
homepage = "https://fiona.readthedocs.io/";
|
|
license = licenses.bsd3;
|
|
maintainers = teams.geospatial.members;
|
|
};
|
|
}
|