pythonPackages.pyepsg: init at 0.3.2

This commit is contained in:
Massimo Redaelli 2018-11-25 10:15:30 +01:00 committed by Massimo Redaelli
parent 962bc254a0
commit d9d8bcbb99
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ buildPythonPackage, lib, fetchPypi, requests }:
buildPythonPackage rec {
pname = "pyepsg";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "0ng0k140kzq3xcffi4vy10py4cmwzfy8anccysw3vgn1x30ghzjr";
};
propagatedBuildInputs = [ requests ];
doCheck = false;
meta = with lib; {
description = "Simple Python interface to epsg.io";
license = licenses.lgpl3;
homepage = https://pyepsg.readthedocs.io/en/latest/;
maintainers = with maintainers; [ mredaelli ];
};
}

View File

@ -1053,6 +1053,8 @@ in {
pyechonest = callPackage ../development/python-modules/pyechonest { };
pyepsg = callPackage ../development/python-modules/pyepsg { };
pyezminc = callPackage ../development/python-modules/pyezminc { };
billiard = callPackage ../development/python-modules/billiard { };