13 buildPythonPackage rec {
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
21 owner = "samuelcolvin";
22 repo = "python-${pname}";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-1HFbNswdKa/9cQX0Gf6lLW1V5Kt/N4X6/5kQDdzp1Wo=";
31 propagatedBuildInputs = [
43 # pytest.PytestRemovedIn8Warning: Passing None has been deprecated.
44 "-W ignore::pytest.PytestRemovedIn8Warning"
49 "test_print_subprocess"
51 "test_multiple_not_verbose"
52 # Sensitive to interpreter output
57 # pytester_pretty is not available in Nixpkgs
58 "tests/test_insert_assert.py"
61 pythonImportsCheck = [
66 description = "Python's missing debug print command and other development tools";
67 homepage = "https://python-devtools.helpmanual.io/";
68 changelog = "https://github.com/samuelcolvin/python-devtools/releases/tag/v${version}";
69 license = licenses.mit;
70 maintainers = with maintainers; [ jdahm ];