mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
24 lines
563 B
Nix
24 lines
563 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 ];
|
|
};
|
|
}
|