forked from mirrors/nixpkgs
python3Packages.pytest-mypy: fix build
This commit is contained in:
parent
5bb40ab797
commit
0a1edca2c7
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue