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

21 lines
535 B
Nix
Raw Normal View History

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