9 buildPythonPackage rec {
10 pname = "pytest-annotate";
12 format = "setuptools";
15 inherit pname version;
16 hash = "sha256-CSaTIPjSGHKCR0Nvet6W8zzz/oWEC0BjIULZ+JaMH9A=";
19 buildInputs = [ pytest ];
21 propagatedBuildInputs = [ pyannotate ];
24 substituteInPlace setup.py \
25 --replace "pytest>=3.2.0,<7.0.0" "pytest>=3.2.0"
31 pythonImportsCheck = [ "pytest_annotate" ];
34 description = "Generate PyAnnotate annotations from your pytest tests";
35 homepage = "https://github.com/kensho-technologies/pytest-annotate";
36 license = licenses.asl20;