pythonPackages.cozy: Disable on python2 (#46436)

Cozy does not support python2.
This commit is contained in:
Josef Kemetmüller 2018-09-09 21:33:45 +02:00 committed by xeji
parent 88cf02421b
commit a4b040e69f
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchFromGitHub, lib,
{ buildPythonPackage, isPy3k, fetchFromGitHub, lib,
z3, ply, python-igraph, oset, ordered-set, dictionaries }:
buildPythonPackage {
@ -29,6 +29,8 @@ buildPythonPackage {
$out/bin/cozy --help
'';
disabled = !isPy3k;
meta = {
description = "The collection synthesizer";
homepage = https://cozy.uwplse.org/;