summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyfakefs/default.nix
blob: cfb575c7675ef86a7ad32fcf5ccbaae1b7708a42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, buildPythonPackage, fetchFromGitHub, python, pytest, glibcLocales }:

buildPythonPackage rec {
  version = "3.4.1";
  pname = "pyfakefs";

  # no tests in PyPI tarball
  # https://github.com/jmcgeheeiv/pyfakefs/pull/361
  src = fetchFromGitHub {
    owner = "jmcgeheeiv";
    repo = pname;
    rev = "v${version}";
    sha256 = "0i8kq7sl8bczr927hllgfhsmirjqjh89c9184kcqmprc13ac4kxy";
  };

  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/;
    maintainers = with maintainers; [ gebner ];
  };
}