nixpkgs/pkgs/development/python-modules/mypy-protobuf/default.nix

21 lines
546 B
Nix
Raw Normal View History

2018-08-17 00:34:39 +01:00
{ stdenv, fetchPypi, buildPythonApplication, protobuf }:
buildPythonApplication rec {
pname = "mypy-protobuf";
2019-10-24 07:47:39 +01:00
version = "1.16";
2018-08-17 00:34:39 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:39 +01:00
sha256 = "72ab724299aebd930b88476f6545587bff5bf480697c016097bd188841a56276";
2018-08-17 00:34:39 +01:00
};
propagatedBuildInputs = [ protobuf ];
meta = with stdenv.lib; {
description = "Generate mypy stub files from protobuf specs";
homepage = "https://github.com/dropbox/mypy-protobuf";
license = licenses.asl20;
maintainers = with maintainers; [ lnl7 ];
};
}