Merge pull request #115197 from SuperSandro2000/fix-collection21

This commit is contained in:
Sandro
2021-03-06 04:56:45 +01:00
committed by GitHub
56 changed files with 244 additions and 223 deletions

View File

@@ -6,7 +6,7 @@
, bottle
, chardet
, dateutil
, google_api_python_client
, google-api-python-client
, lxml
, oauth2client
, ply
@@ -34,7 +34,7 @@ buildPythonPackage rec {
bottle
chardet
dateutil
google_api_python_client
google-api-python-client
lxml
oauth2client
ply

View File

@@ -21,5 +21,7 @@ buildPythonPackage rec {
homepage = "https://bitbucket.org/sgillies/descartes/";
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp ];
# all tests are failing
broken = true;
};
}

View File

@@ -8,7 +8,7 @@
, six
, dateutil
, fusepy
, google_api_python_client
, google-api-python-client
}:
buildPythonPackage rec {
@@ -22,7 +22,7 @@ buildPythonPackage rec {
};
buildInputs = [ gipc greenlet httplib2 six ];
propagatedBuildInputs = [ dateutil fusepy google_api_python_client ];
propagatedBuildInputs = [ dateutil fusepy google-api-python-client ];
patchPhase = ''
substituteInPlace gdrivefs/resources/requirements.txt \

View File

@@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k
, docutils, installShellFiles
, google_api_python_client, simplejson, oauth2client, setuptools, xdg
, google-api-python-client, simplejson, oauth2client, setuptools, xdg
}:
buildPythonPackage rec {
@@ -15,7 +15,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ docutils installShellFiles ];
propagatedBuildInputs = [
google_api_python_client simplejson oauth2client setuptools xdg
google-api-python-client simplejson oauth2client setuptools xdg
];
postInstall = ''

View File

@@ -2,7 +2,7 @@
, buildPythonPackage
, fetchPypi
, google-auth
, googleapis_common_protos
, googleapis-common-protos
, grpcio
, protobuf
, pytz
@@ -23,7 +23,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
googleapis_common_protos
googleapis-common-protos
google-auth
grpcio
protobuf

View File

@@ -2,7 +2,7 @@
, buildPythonPackage
, fetchPypi
, grpcio
, googleapis_common_protos
, googleapis-common-protos
, pytest
}:
@@ -15,7 +15,7 @@ buildPythonPackage rec {
sha256 = "0bfb5b56f648f457021a91c0df0db4934b6e0c300bd0f2de2333383fe958aa72";
};
propagatedBuildInputs = [ grpcio googleapis_common_protos ];
propagatedBuildInputs = [ grpcio googleapis-common-protos ];
# non-standard test format, and python3 will load local google folder first
# but tests cannot be ran if google folder is removed or moved

View File

@@ -2,7 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchPypi
, google_api_python_client
, google-api-python-client
, google-auth-oauthlib
, jupyterhub
, mwoauth
@@ -29,7 +29,7 @@ buildPythonPackage rec {
pytestFlagsArray = [ "oauthenticator/tests" ];
checkInputs = [
google_api_python_client
google-api-python-client
google-auth-oauthlib
mwoauth
pyjwt

View File

@@ -3,7 +3,7 @@
, fetchPypi
, isPy3k
, protobuf
, googleapis_common_protos
, googleapis-common-protos
, pytestCheckHook
, pytz
}:
@@ -20,7 +20,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ protobuf ];
checkInputs = [ pytestCheckHook pytz googleapis_common_protos ];
checkInputs = [ pytestCheckHook pytz googleapis-common-protos ];
pythonImportsCheck = [ "proto" ];

View File

@@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, google_api_python_client
, google-api-python-client
, oauth2client
, pyyaml
}:
@@ -17,7 +17,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
google_api_python_client
google-api-python-client
oauth2client
pyyaml
];

View File

@@ -1,7 +1,6 @@
{ lib
, aiohttp
, aresponses
, async-timeout
, asynctest
, buildPythonPackage
, fetchFromGitHub

View File

@@ -48,11 +48,11 @@ buildPythonPackage rec {
"-DPYTHON3_LIBRARY=${lib.getLib python}/lib"
];
meta = {
meta = with lib; {
description = "Plugin (front-end) for pyside-generatorrunner, that generates bindings for C++ libraries using CPython source code";
license = lib.licenses.gpl2;
homepage = "http://www.pyside.org/docs/shiboken/";
license = licenses.gpl2;
homepage = "http://www.pyside.org/";
maintainers = [ ];
platforms = lib.platforms.all;
platforms = platforms.all;
};
}

View File

@@ -1,21 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, pytest, pytestrunner, wcwidth }:
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-runner, wcwidth }:
buildPythonPackage rec {
pname = "pyte";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "7e71d03e972d6f262cbe8704ff70039855f05ee6f7ad9d7129df9c977b5a88c5";
};
nativeBuildInputs = [ pytest-runner ];
propagatedBuildInputs = [ wcwidth ];
checkInputs = [ pytest pytestrunner ];
checkInputs = [ pytestCheckHook ];
# tries to write to os.path.dirname(__file__) in test_input_output
checkPhase = ''
py.test -k "not test_input_output"
'';
disabledTests = [
"test_input_output"
];
meta = with lib; {
description = "Simple VTXXX-compatible linux terminal emulator";

View File

@@ -34,7 +34,7 @@ buildPythonPackage rec {
];
# AttributeError: 'KeywordMapping' object has no attribute 'get'
doCheck = ! isPy27;
doCheck = !isPy27;
disabledTests = [
# Disable tests that require network access and use httpbin

View File

@@ -6,7 +6,7 @@
, futures
, gdata
, gnupg
, google_api_python_client
, google-api-python-client
, html2text
, libyaml
, lxml
@@ -56,7 +56,7 @@ buildPythonPackage rec {
feedparser
gdata
gnupg
google_api_python_client
google-api-python-client
html2text
libyaml
lxml