pythonPackages.google_apputils: Disable on python 3

This commit is contained in:
Sandro Jäckel 2021-01-05 12:19:23 +01:00
parent 96c5044b2e
commit 46216c5fa7
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -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 ];
}; };
} }