Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 25 lines 527 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, mypy 6}: 7 8buildPythonPackage rec { 9 pname = "pytest-mypy"; 10 version = "0.4.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "5a5338cecff17f005b181546a13e282761754b481225df37f33d37f86ac5b304"; 15 }; 16 17 propagatedBuildInputs = [ pytest mypy ]; 18 19 meta = with lib; { 20 description = "Mypy static type checker plugin for Pytest"; 21 homepage = https://github.com/dbader/pytest-mypy; 22 license = licenses.mit; 23 maintainers = [ maintainers.costrouc ]; 24 }; 25}