nixpkgs/pkgs/development/python-modules/pyfakefs/default.nix

45 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, python, pytest, glibcLocales, isPy37 }:
2018-01-08 13:09:18 +00:00
buildPythonPackage rec {
2020-06-06 07:47:24 +01:00
version = "4.0.2";
2018-01-08 13:09:18 +00:00
pname = "pyfakefs";
2019-01-13 14:34:01 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:24 +01:00
sha256 = "c415e1c737e3aa72b92af41832a7e0a2c325eb8d3a72a210750714e00fcaeace";
2018-01-08 13:09:18 +00:00
};
2018-04-06 16:31:40 +01:00
postPatch = ''
# test doesn't work in sandbox
substituteInPlace pyfakefs/tests/fake_filesystem_test.py \
2018-04-06 16:31:40 +01:00
--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"
substituteInPlace pyfakefs/tests/fake_filesystem_unittest_test.py \
--replace "test_copy_real_file" "notest_copy_real_file"
'' + (stdenv.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"
'');
2018-04-06 16:31:40 +01:00
# https://github.com/jmcgeheeiv/pyfakefs/issues/508
doCheck = !isPy37;
2018-04-06 16:31:40 +01:00
checkInputs = [ pytest glibcLocales ];
checkPhase = ''
export LC_ALL=en_US.UTF-8
${python.interpreter} -m pyfakefs.tests.all_tests
2019-01-10 13:33:52 +00:00
${python.interpreter} -m pyfakefs.tests.all_tests_without_extra_packages
2019-05-01 03:29:10 +01:00
${python.interpreter} -m pytest pyfakefs/pytest_tests/pytest_plugin_test.py
2018-04-06 16:31:40 +01:00
'';
2018-01-08 13:09:18 +00:00
meta = with stdenv.lib; {
description = "Fake file system that mocks the Python file system modules";
license = licenses.asl20;
homepage = "http://pyfakefs.org/";
2018-01-08 13:09:18 +00:00
maintainers = with maintainers; [ gebner ];
};
}