pythonPackages.google_apputils: Disable on python 3
This commit is contained in:
parent
96c5044b2e
commit
46216c5fa7
@ -1,6 +1,7 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
, pytz
|
, pytz
|
||||||
, gflags
|
, gflags
|
||||||
, dateutil
|
, dateutil
|
||||||
@ -11,10 +12,11 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "google-apputils";
|
pname = "google-apputils";
|
||||||
version = "0.4.2";
|
version = "0.4.2";
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "47959d0651c32102c10ad919b8a0ffe0ae85f44b8457ddcf2bdc0358fb03dc29";
|
sha256 = "0afw0gxmh0yw5g7xsmw49gs8bbp0zyhbh6fr1b0h48f3a439v5a7";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
@ -34,6 +36,6 @@ buildPythonPackage rec {
|
|||||||
description = "Google Application Utilities for Python";
|
description = "Google Application Utilities for Python";
|
||||||
homepage = "https://github.com/google/google-apputils";
|
homepage = "https://github.com/google/google-apputils";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user