mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +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.
45 lines
1.5 KiB
Nix
45 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "5.0.0";
|
|
pname = "pyfakefs";
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-GdHY8e5SCJHXi27QXCB44HktVF+D3uM0YfuqXMcuGH0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# test doesn't work in sandbox
|
|
substituteInPlace pyfakefs/tests/fake_filesystem_test.py \
|
|
--replace "test_expand_root" "notest_expand_root"
|
|
substituteInPlace pyfakefs/tests/fake_os_test.py \
|
|
--replace "test_path_links_not_resolved" "notest_path_links_not_resolved" \
|
|
--replace "test_append_mode_tell_linux_windows" "notest_append_mode_tell_linux_windows"
|
|
'' + (lib.optionalString stdenv.isDarwin ''
|
|
# this test fails on darwin due to case-insensitive file system
|
|
substituteInPlace pyfakefs/tests/fake_os_test.py \
|
|
--replace "test_rename_dir_to_existing_dir" "notest_rename_dir_to_existing_dir"
|
|
'');
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
# https://github.com/jmcgeheeiv/pyfakefs/issues/581 (OSError: [Errno 9] Bad file descriptor)
|
|
disabledTests = [ "test_open_existing_pipe" ];
|
|
pythonImportsCheck = [ "pyfakefs" ];
|
|
|
|
meta = with lib; {
|
|
description = "Fake file system that mocks the Python file system modules";
|
|
homepage = "http://pyfakefs.org/";
|
|
changelog = "https://github.com/jmcgeheeiv/pyfakefs/blob/master/CHANGES.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ gebner ];
|
|
};
|
|
}
|