python3Packages.pytest-mypy: fix build

This commit is contained in:
Jonathan Ringer 2020-06-08 12:20:42 -07:00 committed by Frederik Rietdijk
parent 5bb40ab797
commit 0a1edca2c7

View file

@ -1,8 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, filelock
, pytest
, mypy
, setuptools_scm
}:
buildPythonPackage rec {
@ -14,7 +16,8 @@ buildPythonPackage rec {
sha256 = "2560a9b27d59bb17810d12ec3402dfc7c8e100e40539a70d2814bcbb27240f27";
};
propagatedBuildInputs = [ pytest mypy ];
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ pytest mypy filelock ];
meta = with lib; {
description = "Mypy static type checker plugin for Pytest";