summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyepsg/default.nix
blob: 4822e528deea12f54dd4f4f97bdd5a63bbd77da4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildPythonPackage, lib, fetchPypi, requests }:

buildPythonPackage rec {
  pname = "pyepsg";
  version = "0.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7";
  };

  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 ];
  };

}