Skip to content

Commit

Permalink
pythonPackages.cement: disable Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Aug 30, 2018
1 parent 4880df9 commit 36a4df6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/cement/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi }:
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:

buildPythonPackage rec {
pname = "cement";
Expand All @@ -13,6 +13,8 @@ buildPythonPackage rec {
# 127.0.0.1:11211.
doCheck = false;

disabled = !isPy3k;

meta = with stdenv.lib; {
homepage = http://builtoncement.com/;
description = "A CLI Application Framework for Python.";
Expand Down

0 comments on commit 36a4df6

Please sign in to comment.