pythonPackages.cozy: Disable on python2 (#46436)
Cozy does not support python2.
This commit is contained in:
parent
88cf02421b
commit
a4b040e69f
|
@ -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/;
|
||||
|
|
Loading…
Reference in New Issue