mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
python3Packages.geojson-client: init at 0.5
This commit is contained in:
parent
480f0263ca
commit
55f568bf56
39
pkgs/development/python-modules/geojson-client/default.nix
Normal file
39
pkgs/development/python-modules/geojson-client/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, geojson
|
||||
, haversine
|
||||
, pytz
|
||||
, requests
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "geojson-client";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "exxamalte";
|
||||
repo = "python-geojson-client";
|
||||
rev = "v${version}";
|
||||
sha256 = "1cc6ymbn45dv7xdl1r8bbizlmsdbxjmsfza442yxmmm19nxnnqjv";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
geojson
|
||||
haversine
|
||||
pytz
|
||||
requests
|
||||
];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "geojson_client" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module for convenient access to GeoJSON feeds";
|
||||
homepage = "https://github.com/exxamalte/python-geojson-client";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -2502,6 +2502,8 @@ in {
|
|||
|
||||
geojson = callPackage ../development/python-modules/geojson { };
|
||||
|
||||
geojson-client = callPackage ../development/python-modules/geojson-client { };
|
||||
|
||||
geopandas = callPackage ../development/python-modules/geopandas { };
|
||||
|
||||
geopy = if isPy3k then
|
||||
|
|
Loading…
Reference in a new issue