pythonPackages.pytest-mypy: init at 0.3.2

This commit is contained in:
Chris Ostrouchov
2018-11-27 15:08:07 -05:00
parent 0b7522d0f6
commit 0549e307a5
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, mypy
}:
buildPythonPackage rec {
pname = "pytest-mypy";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "acc653210e7d8d5c72845a5248f00fd33f4f3379ca13fe56cfc7b749b5655c3e";
};
propagatedBuildInputs = [ pytest mypy ];
meta = with lib; {
description = "Mypy static type checker plugin for Pytest";
homepage = https://github.com/dbader/pytest-mypy;
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}