1{ buildPythonPackage, lib, fetchPypi, requests }:
2
3buildPythonPackage rec {
4 pname = "pyepsg";
5 version = "0.4.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7";
10 };
11
12 propagatedBuildInputs = [ requests ];
13
14 doCheck = false;
15
16 meta = with lib; {
17 description = "Simple Python interface to epsg.io";
18 license = licenses.lgpl3;
19 homepage = "https://pyepsg.readthedocs.io/en/latest/";
20 maintainers = with maintainers; [ mredaelli ];
21 };
22
23}