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

38 lines
1.1 KiB
Nix
Raw Normal View History

2018-04-06 15:31:40 +00:00
{ stdenv, buildPythonPackage, fetchFromGitHub, python, pytest, glibcLocales }:
2018-01-08 13:09:18 +00:00
buildPythonPackage rec {
2018-04-04 18:14:31 +00:00
version = "3.4.1";
2018-01-08 13:09:18 +00:00
pname = "pyfakefs";
2018-04-06 15:31:40 +00:00
# no tests in PyPI tarball
# https://github.com/jmcgeheeiv/pyfakefs/pull/361
src = fetchFromGitHub {
owner = "jmcgeheeiv";
repo = pname;
rev = "v${version}";
sha256 = "0i8kq7sl8bczr927hllgfhsmirjqjh89c9184kcqmprc13ac4kxy";
2018-01-08 13:09:18 +00:00
};
2018-04-06 15:31:40 +00:00
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
'';
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;
2018-04-06 15:31:40 +00:00
homepage = http://pyfakefs.org/;
2018-01-08 13:09:18 +00:00
maintainers = with maintainers; [ gebner ];
};
}