Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

flask-api: disable python2.7 (#97766)

authored by freezeboy and committed by GitHub c70aaa40 489f4d80

+3 -1
+3 -1
pkgs/development/python-modules/flask-api/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, flask, markdown }: 1 + { lib, buildPythonPackage, pythonOlder, fetchPypi, flask, markdown }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "Flask-API"; 5 5 version = "2.0"; 6 + 7 + disabled = pythonOlder "3.6"; 6 8 7 9 src = fetchPypi { 8 10 inherit pname version;