nixpkgs/pkgs/development/python-modules/geojson/default.nix

24 lines
559 B
Nix
Raw Normal View History

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