5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
39 lines
797 B
Nix
39 lines
797 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pyannotate,
|
|
pytest,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-annotate";
|
|
version = "1.0.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-CSaTIPjSGHKCR0Nvet6W8zzz/oWEC0BjIULZ+JaMH9A=";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ pyannotate ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pytest>=3.2.0,<7.0.0" "pytest>=3.2.0"
|
|
'';
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pytest_annotate" ];
|
|
|
|
meta = with lib; {
|
|
description = "Generate PyAnnotate annotations from your pytest tests";
|
|
homepage = "https://github.com/kensho-technologies/pytest-annotate";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|