Skip to content

Commit

Permalink
flask-api: disable python2.7 (#97766)
Browse files Browse the repository at this point in the history
  • Loading branch information
freezeboy committed Sep 12, 2020
1 parent 489f4d8 commit c70aaa4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/flask-api/default.nix
@@ -1,9 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, flask, markdown }:
{ lib, buildPythonPackage, pythonOlder, fetchPypi, flask, markdown }:

buildPythonPackage rec {
pname = "Flask-API";
version = "2.0";

disabled = pythonOlder "3.6";

src = fetchPypi {
inherit pname version;
sha256 = "6986642e5b25b7def710ca9489ed2b88c94006bfc06eca01c78da7cf447e66e5";
Expand Down

0 comments on commit c70aaa4

Please sign in to comment.