2018-05-19 09:43:54 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, glibcLocales }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "geojson";
|
2019-08-20 12:09:01 +01:00
|
|
|
version = "2.5.0";
|
2018-07-12 08:13:12 +01:00
|
|
|
|
|
|
|
format = "wheel";
|
2018-05-19 09:43:54 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2018-07-12 08:13:12 +01:00
|
|
|
inherit pname version format;
|
2019-08-20 12:09:01 +01:00
|
|
|
sha256 = "1filqm050ixy53kdv81bd4n80vjvfapnmzizy7jg8a6pilv17gfc";
|
2018-05-19 09:43:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
checkInputs = [ glibcLocales ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/frewsxcv/python-geojson;
|
|
|
|
description = "Python bindings and utilities for GeoJSON";
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [ geistesk ];
|
|
|
|
};
|
|
|
|
}
|