Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, mypy 6}: 7 8buildPythonPackage rec { 9 pname = "pytest-mypy"; 10 version = "0.3.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "acc653210e7d8d5c72845a5248f00fd33f4f3379ca13fe56cfc7b749b5655c3e"; 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}