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
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
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 ];
};
}

View file

@ -623,6 +623,8 @@ in {
pytesseract = callPackage ../development/python-modules/pytesseract { };
pytest-mypy = callPackage ../development/python-modules/pytest-mypy { };
pytest-tornado = callPackage ../development/python-modules/pytest-tornado { };
python-binance = callPackage ../development/python-modules/python-binance { };