Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyepsg / default.nix
blob2e0b2c282a26cb5784c9dea934e184d5f8afa15a
1 { buildPythonPackage, lib, fetchPypi, requests }:
3 buildPythonPackage rec {
4   pname = "pyepsg";
5   version = "0.4.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7";
10   };
12   propagatedBuildInputs = [ requests ];
14   doCheck = false;
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   };