biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pyepsg / default.nix
blob47cf101d674bfda009d3cf26c318b953b4ccef33
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5   requests,
6 }:
8 buildPythonPackage rec {
9   pname = "pyepsg";
10   version = "0.4.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7";
16   };
18   propagatedBuildInputs = [ requests ];
20   doCheck = false;
22   meta = with lib; {
23     description = "Simple Python interface to epsg.io";
24     license = licenses.lgpl3;
25     homepage = "https://pyepsg.readthedocs.io/en/latest/";
26     maintainers = with maintainers; [ ];
27   };