nur-packages

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

commit d8afc89236a8a37ca3ec2bad7d5626797c7b9ef5
parent 29fcac6880e787343f2fc0c86ecfdf956a6f06ce
Author: Nikolay Korotkiy <sikmir@gmail.com>
Date:   Fri, 30 Oct 2020 10:54:11 +0300

tilesets-cli: fix build

Diffstat:
Mpkgs/tools/geo/tilesets-cli/default.nix | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/pkgs/tools/geo/tilesets-cli/default.nix b/pkgs/tools/geo/tilesets-cli/default.nix @@ -1,4 +1,4 @@ -{ lib, python3Packages, jsonseq, sources }: +{ lib, python3Packages, jsonseq, mercantile, supermercado, sources }: let pname = "tilesets-cli"; date = lib.substring 0 10 sources.tilesets-cli.date; @@ -8,7 +8,14 @@ python3Packages.buildPythonApplication { inherit pname version; src = sources.tilesets-cli; - propagatedBuildInputs = with python3Packages; [ boto3 click cligj requests requests-toolbelt jsonschema jsonseq ]; + propagatedBuildInputs = with python3Packages; [ + boto3 click cligj + requests requests-toolbelt + jsonschema jsonseq + mercantile supermercado + ]; + + checkInputs = with python3Packages; [ pytestCheckHook ]; meta = with lib; { inherit (sources.tilesets-cli) description homepage;