nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (704B)


      1 { lib, fetchFromGitHub, python3Packages }:
      2 
      3 python3Packages.buildPythonApplication rec {
      4   pname = "tilelog";
      5   version = "1.7.0";
      6 
      7   src = fetchFromGitHub {
      8     owner = "openstreetmap";
      9     repo = "tilelog";
     10     rev = "v${version}";
     11     hash = "sha256-tSBawN8u3mw6sSVFUMT+qfjbhwPF+x3sYXpO18YUjpw=";
     12   };
     13 
     14   nativeBuildInputs = with python3Packages; [ flake8 ];
     15 
     16   propagatedBuildInputs = with python3Packages; [ click publicsuffixlist pyathena pyarrow ];
     17 
     18   doCheck = false;
     19 
     20   meta = with lib; {
     21     description = "Tilelog is used to generate tile logs for the OSMF Standard map layer";
     22     inherit (src.meta) homepage;
     23     license = licenses.gpl3Plus;
     24     maintainers = [ maintainers.sikmir ];
     25   };
     26 }