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>2019-01-10 14:33:52 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-10 14:33:52 +0100
commitd6ededb2a1ce0aab3928d4abd5d5224b595aaaa1 (patch)
tree691af7c295f111d663c23ac041875cb26ecc4e6c /pkgs/development/python-modules/pyfakefs
parentf3902687b804696e79d1179b4899a3f5ecc8eeef (diff)
downloadnixpkgs-d6ededb2a1ce0aab3928d4abd5d5224b595aaaa1.tar
nixpkgs-d6ededb2a1ce0aab3928d4abd5d5224b595aaaa1.tar.gz
nixpkgs-d6ededb2a1ce0aab3928d4abd5d5224b595aaaa1.tar.bz2
nixpkgs-d6ededb2a1ce0aab3928d4abd5d5224b595aaaa1.tar.lz
nixpkgs-d6ededb2a1ce0aab3928d4abd5d5224b595aaaa1.tar.xz
nixpkgs-d6ededb2a1ce0aab3928d4abd5d5224b595aaaa1.tar.zst
nixpkgs-d6ededb2a1ce0aab3928d4abd5d5224b595aaaa1.zip
python.pkgs.pyfakefs: 3.4.3 -> 3.5.5
Diffstat (limited to 'pkgs/development/python-modules/pyfakefs')
-rw-r--r--pkgs/development/python-modules/pyfakefs/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pyfakefs/default.nix b/pkgs/development/python-modules/pyfakefs/default.nix
index 64d547ce97e..c05299d418f 100644
--- a/pkgs/development/python-modules/pyfakefs/default.nix
+++ b/pkgs/development/python-modules/pyfakefs/default.nix
@@ -1,7 +1,7 @@
 { stdenv, buildPythonPackage, fetchFromGitHub, python, pytest, glibcLocales }:
 
 buildPythonPackage rec {
-  version = "3.4.3";
+  version = "3.5.5";
   pname = "pyfakefs";
 
   # no tests in PyPI tarball
@@ -10,7 +10,7 @@ buildPythonPackage rec {
     owner = "jmcgeheeiv";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0rhbkcb5h2x8kmyxivr5jr1db2xvmpjdbsfjxl142qhfb29hr2hp";
+    sha256 = "1pww444ih4bf84a0jgl1r446mjywhlls890mnw76flx8maahlik1";
   };
 
   postPatch = ''
@@ -33,7 +33,8 @@ buildPythonPackage rec {
   checkPhase = ''
     export LC_ALL=en_US.UTF-8
     ${python.interpreter} -m pyfakefs.tests.all_tests
-    ${python.interpreter} -m pytest pyfakefs/tests/pytest_plugin_test.py
+    ${python.interpreter} -m pyfakefs.tests.all_tests_without_extra_packages
+    ${python.interpreter} -m pytest pyfakefs/tests/pytest/pytest_plugin_test.py
   '';
 
   meta = with stdenv.lib; {