blob: 92d0ddb225506b45b0c1b1d9f529950c4a70ee1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
buildPythonPackage,
lib,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "pyepsg";
version = "0.4.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7";
};
propagatedBuildInputs = [ requests ];
doCheck = false;
meta = {
description = "Simple Python interface to epsg.io";
license = lib.licenses.lgpl3;
homepage = "https://pyepsg.readthedocs.io/en/latest/";
maintainers = [ ];
};
}
|