Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyepsg / default.nix
blob0fb511e1c8341ef5b7acd90b00ab05e0e8a53e4b
1 { buildPythonPackage, lib, fetchPypi, requests }:
3 buildPythonPackage rec {
4   pname = "pyepsg";
5   version = "0.4.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7";
11   };
13   propagatedBuildInputs = [ requests ];
15   doCheck = false;
17   meta = with lib; {
18     description = "Simple Python interface to epsg.io";
19     license = licenses.lgpl3;
20     homepage = "https://pyepsg.readthedocs.io/en/latest/";
21     maintainers = with maintainers; [ mredaelli ];
22   };