3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #140535 from SuperSandro2000/python3Packages.proto-plus

This commit is contained in:
Sandro 2021-10-05 10:46:31 +02:00 committed by GitHub
commit 6eb9603873
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View file

@ -6,6 +6,7 @@
, proto-plus
, pytestCheckHook
, pytest-asyncio
, pytz
, mock
}:
@ -18,7 +19,7 @@ buildPythonPackage rec {
sha256 = "fcb71ebe5c5b232d24fe7d666b65709e4fc8db43263c8182e5ed8e5a52abefec";
};
propagatedBuildInputs = [ google-api-core libcst proto-plus ];
propagatedBuildInputs = [ google-api-core libcst proto-plus pytz ];
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
pythonImportsCheck = [

View file

@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "proto-plus";
version = "1.19.0";
version = "1.19.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-zmaVzoBDg61vOSxLsYdMMjiWKQofZWVg3jZBa6gy2R4=";
sha256 = "sha256-ylMLBxjGJbpj8VGrP83INrWTQ9FJt9/RXsLc6zhEwi0=";
};
propagatedBuildInputs = [ protobuf ];