at master 561 B view raw
1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5 requests, 6}: 7 8buildPythonPackage rec { 9 pname = "pyepsg"; 10 version = "0.4.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7"; 16 }; 17 18 propagatedBuildInputs = [ requests ]; 19 20 doCheck = false; 21 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 }; 28}