Various GNOME leaf package updates (#73790)
Various GNOME leaf package updates
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, Babel
|
||||
, lxml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "babelgladeextractor";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "BabelGladeExtractor";
|
||||
inherit version;
|
||||
extension = "tar.bz2";
|
||||
sha256 = "18m5vi3sj2h26ibmb6fzfjs2lscg757ivk1bjgkn1haf9gdwyjj6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
Babel
|
||||
lxml # TODO: remove in 0.7.0
|
||||
];
|
||||
|
||||
# Tests missing
|
||||
# https://github.com/gnome-keysign/babel-glade/issues/5
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/gnome-keysign/babel-glade";
|
||||
description = "Babel Glade XML files translatable strings extractor";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ jtojnar ];
|
||||
};
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
, isPy3k
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, flask
|
||||
@@ -32,10 +33,13 @@ buildPythonPackage rec {
|
||||
py.test
|
||||
'';
|
||||
|
||||
# ImportError: No module named google.auth
|
||||
doCheck = isPy3k;
|
||||
|
||||
meta = {
|
||||
description = "Google Authentication Library: httplib2 transport";
|
||||
homepage = https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2;
|
||||
license = lib.licenses.asl20;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
33
pkgs/development/python-modules/pydrive/default.nix
Normal file
33
pkgs/development/python-modules/pydrive/default.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, google_api_python_client
|
||||
, oauth2client
|
||||
, pyyaml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pydrive";
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "PyDrive";
|
||||
inherit version;
|
||||
sha256 = "11q7l94mb34hfh9wkdwfrh5xw99y13wa33ba7xp1q23q4b60v2c3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
google_api_python_client
|
||||
oauth2client
|
||||
pyyaml
|
||||
];
|
||||
|
||||
# requires client_secrets.json
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Google Drive API Python wrapper library";
|
||||
homepage = "https://github.com/gsuitedevs/PyDrive";
|
||||
license = lib.licenses.asl20;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user