mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #40762 from geistesk/python-geojson-2.3.0
geojson: init at 2.3.0
This commit is contained in:
commit
c757111ab7
21
pkgs/development/python-modules/geojson/default.nix
Normal file
21
pkgs/development/python-modules/geojson/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, glibcLocales }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "geojson";
|
||||
version = "2.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "06ihcb8839zzgk5jcv18kc6nqld4hhj3nk4f3drzcr8n8893v1y8";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -5981,6 +5981,8 @@ in {
|
||||
|
||||
geopandas = callPackage ../development/python-modules/geopandas { };
|
||||
|
||||
geojson = callPackage ../development/python-modules/geojson { };
|
||||
|
||||
gevent-websocket = buildPythonPackage rec {
|
||||
name = "gevent-websocket-0.9.3";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user