mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, requests
|
|
, process-tests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "manhole";
|
|
version = "1.8.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "bada20a25b547b395d472e2e08928f0437df26bbdbda4797c55863198e29a21f";
|
|
};
|
|
|
|
# test_help expects architecture-dependent Linux signal numbers.
|
|
#
|
|
# {test_locals,test_socket_path} fail to remove /tmp/manhole-socket
|
|
# on the x86_64-darwin builder.
|
|
#
|
|
# TODO: change this back to `doCheck = stdenv.isLinux` after
|
|
# https://github.com/ionelmc/python-manhole/issues/54 is fixed
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [ pytest requests process-tests ];
|
|
checkPhase = ''
|
|
# Based on its tox.ini
|
|
export PYTHONUNBUFFERED=yes
|
|
export PYTHONPATH=.:tests:$PYTHONPATH
|
|
|
|
# The tests use manhole-cli
|
|
export PATH="$PATH:$out/bin"
|
|
|
|
# test_uwsgi fails with:
|
|
# http.client.RemoteDisconnected: Remote end closed connection without response
|
|
py.test -vv -k "not test_uwsgi"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ionelmc/python-manhole";
|
|
description = "Debugging manhole for Python applications";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ ivan ];
|
|
};
|
|
}
|