python3Packages.jsonrpc-server,docker: drop python 3.2 checks

+5 -7
+2 -3
pkgs/applications/virtualization/docker/compose_1.nix
··· 4 , pyyaml, colorama, docopt 5 , dockerpty, docker, jsonschema, requests 6 , six, texttable, websocket-client, cached-property 7 - , enum34, functools32, paramiko, distro, python-dotenv 8 }: 9 10 buildPythonApplication rec { ··· 25 jsonschema requests six texttable websocket-client 26 docopt cached-property paramiko distro python-dotenv 27 ] 28 - ++ lib.optional (pythonOlder "3.4") enum34 29 - ++ lib.optional (pythonOlder "3.2") functools32; 30 31 postPatch = '' 32 # Remove upper bound on requires, see also
··· 4 , pyyaml, colorama, docopt 5 , dockerpty, docker, jsonschema, requests 6 , six, texttable, websocket-client, cached-property 7 + , enum34, paramiko, distro, python-dotenv 8 }: 9 10 buildPythonApplication rec { ··· 25 jsonschema requests six texttable websocket-client 26 docopt cached-property paramiko distro python-dotenv 27 ] 28 + ++ lib.optional (pythonOlder "3.4") enum34; 29 30 postPatch = '' 31 # Remove upper bound on requires, see also
+3 -4
pkgs/development/python-modules/python-jsonrpc-server/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 , pytestCheckHook, mock, pytest-cov, coverage 3 - , future, futures ? null, ujson}: 4 5 buildPythonPackage rec { 6 pname = "python-jsonrpc-server"; ··· 22 pytestCheckHook mock pytest-cov coverage 23 ]; 24 25 - propagatedBuildInputs = [ future ujson ] 26 - ++ lib.optional (pythonOlder "3.2") futures; 27 28 meta = with lib; { 29 homepage = "https://github.com/palantir/python-jsonrpc-server";
··· 1 + { lib, buildPythonPackage, fetchFromGitHub 2 , pytestCheckHook, mock, pytest-cov, coverage 3 + , future, ujson}: 4 5 buildPythonPackage rec { 6 pname = "python-jsonrpc-server"; ··· 22 pytestCheckHook mock pytest-cov coverage 23 ]; 24 25 + propagatedBuildInputs = [ future ujson ]; 26 27 meta = with lib; { 28 homepage = "https://github.com/palantir/python-jsonrpc-server";