aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pyfakefs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/pyfakefs
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pyfakefs')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pyfakefs/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pyfakefs/default.nix b/nixpkgs/pkgs/development/python-modules/pyfakefs/default.nix
new file mode 100644
index 00000000000..7142b40ce0b
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/pyfakefs/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, buildPythonPackage, fetchPypi, python, pytest, glibcLocales }:
+
+buildPythonPackage rec {
+ version = "3.5.8";
+ pname = "pyfakefs";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "8cd2270d65d3316dd4dc6bb83242df2e0990d27605209bc16e8041bcc0956961";
+ };
+
+ 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"
+ 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"
+ '');
+
+ checkInputs = [ pytest glibcLocales ];
+
+ checkPhase = ''
+ export LC_ALL=en_US.UTF-8
+ ${python.interpreter} -m pyfakefs.tests.all_tests
+ ${python.interpreter} -m pyfakefs.tests.all_tests_without_extra_packages
+ ${python.interpreter} -m pytest pyfakefs/pytest_tests/pytest_plugin_test.py
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Fake file system that mocks the Python file system modules";
+ license = licenses.asl20;
+ homepage = http://pyfakefs.org/;
+ maintainers = with maintainers; [ gebner ];
+ };
+}