nixpkgs/pkgs/development/python-modules/geojson/default.nix
R. RyanTM 5ddf46ef20 python37Packages.geojson: 2.4.1 -> 2.5.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-geojson/versions
2019-08-20 04:09:01 -07:00

24 lines
561 B
Nix

{ lib, buildPythonPackage, fetchPypi, glibcLocales }:
buildPythonPackage rec {
pname = "geojson";
version = "2.5.0";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "1filqm050ixy53kdv81bd4n80vjvfapnmzizy7jg8a6pilv17gfc";
};
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 ];
};
}