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

24 lines
538 B
Nix
Raw Normal View History

2018-11-25 09:15:30 +00:00
{ buildPythonPackage, lib, fetchPypi, requests }:
buildPythonPackage rec {
pname = "pyepsg";
2019-02-14 07:37:25 +00:00
version = "0.4.0";
2018-11-25 09:15:30 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:25 +00:00
sha256 = "2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7";
2018-11-25 09:15:30 +00:00
};
propagatedBuildInputs = [ requests ];
doCheck = false;
meta = with lib; {
description = "Simple Python interface to epsg.io";
license = licenses.lgpl3;
homepage = "https://pyepsg.readthedocs.io/en/latest/";
2018-11-25 09:15:30 +00:00
maintainers = with maintainers; [ mredaelli ];
};
}