python.pkgs.progressbar: disable on python 3
This commit is contained in:
parent
cb1c0c46d8
commit
59b5600af6
@ -1,9 +1,12 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "progressbar";
|
||||
version = "2.3";
|
||||
|
||||
# https://github.com/niltonvolpato/python-progressbar/issues/54
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b2d38a729785149e65323381d2e6fca0a5e9615a6d8bcf10bfa8adedfc481254";
|
||||
|
Loading…
Reference in New Issue
Block a user