mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
python3Packages.types-protobuf: 3.18.1 -> 3.18.2
This commit is contained in:
parent
d53978239b
commit
315e091c0a
@ -1,15 +1,29 @@
|
||||
{ buildPythonPackage, fetchPypi, lib, types-futures }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, types-futures
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-protobuf";
|
||||
version = "3.18.1";
|
||||
version = "3.18.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "6696bf3cabc51dcc076e8de025c405dbdea7488c5268c2febd14527dac82c233";
|
||||
sha256 = "sha256-yiHe3+d1msvrDNj1xyp0/zxAmuDAe8HZTv9RI6wPojw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ types-futures ];
|
||||
propagatedBuildInputs = [
|
||||
types-futures
|
||||
];
|
||||
|
||||
# Module doesn't have tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"google-stubs"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Typing stubs for protobuf";
|
||||
|
Loading…
Reference in New Issue
Block a user