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