summary refs log tree commit diff
path: root/pkgs/development/tools/mypy-lang
diff options
context:
space:
mode:
authorMartin Gammelsæter <martin@mg.am>2016-07-11 19:35:00 +0200
committerMartin Gammelsæter <martin@mg.am>2016-07-11 19:35:00 +0200
commit811cf56f5f006274ea016db9674f566bfa2cc640 (patch)
tree77612f03398e9fe9b0881617ac03ef9bdb7e2bd8 /pkgs/development/tools/mypy-lang
parent8c81c234d3a3fa9aa38d8ae1c427c66a083c3bce (diff)
downloadnixlib-811cf56f5f006274ea016db9674f566bfa2cc640.tar
nixlib-811cf56f5f006274ea016db9674f566bfa2cc640.tar.gz
nixlib-811cf56f5f006274ea016db9674f566bfa2cc640.tar.bz2
nixlib-811cf56f5f006274ea016db9674f566bfa2cc640.tar.lz
nixlib-811cf56f5f006274ea016db9674f566bfa2cc640.tar.xz
nixlib-811cf56f5f006274ea016db9674f566bfa2cc640.tar.zst
nixlib-811cf56f5f006274ea016db9674f566bfa2cc640.zip
mypy-lang: init at 0.4.2
Diffstat (limited to 'pkgs/development/tools/mypy-lang')
-rw-r--r--pkgs/development/tools/mypy-lang/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/tools/mypy-lang/default.nix b/pkgs/development/tools/mypy-lang/default.nix
new file mode 100644
index 000000000000..d5a5095a262b
--- /dev/null
+++ b/pkgs/development/tools/mypy-lang/default.nix
@@ -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 ];
+  };
+}