python2Packages.trytond: disable for python2

This commit is contained in:
Matt Votava 2020-09-14 23:57:40 -07:00 committed by Jon
parent 0051c0a4a5
commit 5f4b880b40

View File

@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonApplication , buildPythonApplication
, fetchPypi , fetchPypi
, pythonOlder
, mock , mock
, lxml , lxml
, relatorio , relatorio
@ -25,6 +26,8 @@ with stdenv.lib;
buildPythonApplication rec { buildPythonApplication rec {
pname = "trytond"; pname = "trytond";
version = "5.6.5"; version = "5.6.5";
disabled = pythonOlder "3.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "a373d73b141d71f8e30d728dd8380955bc0f33daaa097201fa9a952e3663e6d8"; sha256 = "a373d73b141d71f8e30d728dd8380955bc0f33daaa097201fa9a952e3663e6d8";