10 buildPythonPackage rec {
11 pname = "pytest-pudb";
13 format = "setuptools";
15 src = fetchFromGitHub {
18 # Repo missing tags for releases https://github.com/wronglink/pytest-pudb/issues/24
19 rev = "a6b3d2f4d35e558d72bccff472ecde9c9d9c69e5";
20 hash = "sha256-gI9p6sXCQaQjWBXaHJCFli6lBh8+pr+KPhz50fv1F7A=";
23 buildInputs = [ pytest ];
25 propagatedBuildInputs = [ pudb ];
27 nativeCheckInputs = [ pytestCheckHook ];
29 pythonImportsCheck = [ "pytest_pudb" ];
32 description = "Pytest PuDB debugger integration";
33 homepage = "https://github.com/wronglink/pytest-pudb";
34 license = licenses.mit;
35 maintainers = with maintainers; [ thornycrackers ];