linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / geojson / default.nix
blobb762434fb65afc3da2fa2597a23b051ed722ec5e
1 { lib, buildPythonPackage, fetchPypi, glibcLocales }:
3 buildPythonPackage rec {
4   pname = "geojson";
5   version = "2.5.0";
7   format = "wheel";
9   src = fetchPypi {
10     inherit pname version format;
11     sha256 = "1filqm050ixy53kdv81bd4n80vjvfapnmzizy7jg8a6pilv17gfc";
12   };
14   LC_ALL = "en_US.UTF-8";
15   checkInputs = [ glibcLocales ];
17   meta = {
18     homepage = "https://github.com/frewsxcv/python-geojson";
19     description = "Python bindings and utilities for GeoJSON";
20     license = lib.licenses.bsd3;
21     maintainers = with lib.maintainers; [ oxzi ];
22   };