summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyfakefs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-06 17:31:40 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:36:06 +0200
commit8b85031f0737ab839dad48e6b6377fdcb6c00d45 (patch)
treee114531fde152c44fc36a6138745bd2db0e86c63 /pkgs/development/python-modules/pyfakefs
parentd6e8e946fcda63da13642b975eb2018cfdf83408 (diff)
downloadnixlib-8b85031f0737ab839dad48e6b6377fdcb6c00d45.tar
nixlib-8b85031f0737ab839dad48e6b6377fdcb6c00d45.tar.gz
nixlib-8b85031f0737ab839dad48e6b6377fdcb6c00d45.tar.bz2
nixlib-8b85031f0737ab839dad48e6b6377fdcb6c00d45.tar.lz
nixlib-8b85031f0737ab839dad48e6b6377fdcb6c00d45.tar.xz
nixlib-8b85031f0737ab839dad48e6b6377fdcb6c00d45.tar.zst
nixlib-8b85031f0737ab839dad48e6b6377fdcb6c00d45.zip
python.pkgs.pyfakefs: run tests
Diffstat (limited to 'pkgs/development/python-modules/pyfakefs')
-rw-r--r--pkgs/development/python-modules/pyfakefs/default.nix30
1 files changed, 23 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/pyfakefs/default.nix b/pkgs/development/python-modules/pyfakefs/default.nix
index 0dc0ecf16200..cfb575c7675e 100644
--- a/pkgs/development/python-modules/pyfakefs/default.nix
+++ b/pkgs/development/python-modules/pyfakefs/default.nix
@@ -1,21 +1,37 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytest, unittest2 }:
+{ stdenv, buildPythonPackage, fetchFromGitHub, python, pytest, glibcLocales }:
 
 buildPythonPackage rec {
   version = "3.4.1";
   pname = "pyfakefs";
-  name = "${pname}-${version}";
 
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "96f1d008ae6cc4d9866dd674ee852748a11c67784f1f369221a5fd2750cc0883";
+  # no tests in PyPI tarball
+  # https://github.com/jmcgeheeiv/pyfakefs/pull/361
+  src = fetchFromGitHub {
+    owner = "jmcgeheeiv";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0i8kq7sl8bczr927hllgfhsmirjqjh89c9184kcqmprc13ac4kxy";
   };
 
-  propagatedBuildInputs = [ pytest unittest2 ];
+  postPatch = ''
+    # test doesn't work in sandbox
+    substituteInPlace tests/fake_filesystem_test.py \
+      --replace "test_expand_root" "notest_expand_root"
+    substituteInPlace tests/fake_os_test.py \
+      --replace "test_append_mode" "notest_append_mode"
+  '';
+
+  checkInputs = [ pytest glibcLocales ];
+
+  checkPhase = ''
+    LC_ALL=en_US.UTF-8 ${python.interpreter} -m tests.all_tests
+    py.test 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/";
+    homepage    = http://pyfakefs.org/;
     maintainers = with maintainers; [ gebner ];
   };
 }