mapproxy: 3.1.3 -> 4.0.1 (#394283)

authored by Nikolay Korotkiy and committed by GitHub fb2b3f7a c51405fb

+8 -10
+8 -10
pkgs/by-name/ma/mapproxy/package.nix
··· 1 1 { 2 2 lib, 3 - python3, 4 3 fetchFromGitHub, 4 + 5 + python3Packages, 5 6 }: 6 7 7 - with python3.pkgs; 8 - buildPythonApplication rec { 8 + python3Packages.buildPythonApplication rec { 9 9 pname = "mapproxy"; 10 - version = "3.1.3"; 10 + version = "4.0.1"; 11 + disabled = python3Packages.pythonOlder "3.8"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "mapproxy"; 14 15 repo = "mapproxy"; 15 16 tag = version; 16 - hash = "sha256-Dltr4JlgE1aJfSybTbAxlUyjqkfaobupNNSj90j9taE="; 17 + hash = "sha256-bqM25exBPUB7hFtseWMw4Q1W6IeHLx+JrplOkZVEIl0="; 17 18 }; 18 19 19 20 prePatch = '' 20 21 substituteInPlace mapproxy/util/ext/serving.py --replace "args = [sys.executable] + sys.argv" "args = sys.argv" 21 22 ''; 22 23 23 - dependencies = [ 24 + dependencies = with python3Packages; [ 24 25 boto3 # needed for caches service 25 26 future 26 27 jsonschema ··· 33 34 setuptools 34 35 werkzeug 35 36 ]; 37 + 36 38 # Tests are disabled: 37 39 # 1) Dependency list is huge. 38 40 # https://github.com/mapproxy/mapproxy/blob/master/requirements-tests.txt 39 - # 40 - # 2) There are security issues with package Riak 41 - # https://github.com/NixOS/nixpkgs/issues/33876 42 - # https://github.com/NixOS/nixpkgs/pull/56480 43 41 doCheck = false; 44 42 45 43 meta = {