My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/types-protobuf/default.nix

34 lines
641 B

{ lib
, buildPythonPackage
, fetchPypi
, types-futures
}:
buildPythonPackage rec {
pname = "types-protobuf";
version = "3.19.15";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-03HQpbMueMLWhDKaXUSR04Xm6tyrSXs3xBFy3tMoxdk=";
};
propagatedBuildInputs = [
types-futures
];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"google-stubs"
];
meta = with lib; {
description = "Typing stubs for protobuf";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ andersk ];
};
}