mypy-lang: init at 0.4.2

This commit is contained in:
Martin Gammelsæter
2016-07-11 19:35:00 +02:00
parent 8c81c234d3
commit 811cf56f5f
3 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchurl, python35Packages }:
python35Packages.buildPythonApplication rec {
name = "mypy-lang-${version}";
version = "0.4.2";
# Tests not included in pip package.
doCheck = false;
src = fetchurl {
url = "mirror://pypi/m/mypy-lang/${name}.tar.gz";
sha256 = "12vwgzbpv0n403dvzas5ckw0f62slqk5j3024y65hi9n95r34rws";
};
meta = with stdenv.lib; {
description = "Optional static typing for Python";
homepage = "http://www.mypy-lang.org";
license = licenses.mit;
maintainers = with maintainers; [ martingms ];
};
}