mypy-protobuf: init at 1.6

This commit is contained in:
Daiderd Jordan 2018-08-17 01:34:39 +02:00
parent 092fba0c5e
commit d8b202698c
No known key found for this signature in database
GPG Key ID: D02435D05B810C96
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchPypi, buildPythonApplication, protobuf }:
buildPythonApplication rec {
pname = "mypy-protobuf";
version = "1.6";
src = fetchPypi {
inherit pname version;
sha256 = "1bmpd82qm7rjnzc4i275lm18mmz8anhrjhwq2ci179l64hrfr0nb";
};
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 ];
};
}

View File

@ -7866,6 +7866,8 @@ in {
mypy = callPackage ../development/python-modules/mypy { };
mypy-protobuf = callPackage ../development/python-modules/mypy-protobuf { };
mwclient = buildPythonPackage rec {
version = "0.8.3";
pname = "mwclient";