mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
25 lines
563 B
Nix
25 lines
563 B
Nix
{ 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 = with lib; {
|
|
description = "Simple Python interface to epsg.io";
|
|
license = licenses.lgpl3;
|
|
homepage = "https://pyepsg.readthedocs.io/en/latest/";
|
|
maintainers = with maintainers; [ mredaelli ];
|
|
};
|
|
|
|
}
|