python.pkgs.pyfakefs: run tests
This commit is contained in:
parent
d6e8e946fc
commit
8b85031f07
@ -1,21 +1,37 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, pytest, unittest2 }:
|
{ stdenv, buildPythonPackage, fetchFromGitHub, python, pytest, glibcLocales }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "3.4.1";
|
version = "3.4.1";
|
||||||
pname = "pyfakefs";
|
pname = "pyfakefs";
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
# no tests in PyPI tarball
|
||||||
inherit pname version;
|
# https://github.com/jmcgeheeiv/pyfakefs/pull/361
|
||||||
sha256 = "96f1d008ae6cc4d9866dd674ee852748a11c67784f1f369221a5fd2750cc0883";
|
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; {
|
meta = with stdenv.lib; {
|
||||||
description = "Fake file system that mocks the Python file system modules";
|
description = "Fake file system that mocks the Python file system modules";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
homepage = "http://pyfakefs.org/";
|
homepage = http://pyfakefs.org/;
|
||||||
maintainers = with maintainers; [ gebner ];
|
maintainers = with maintainers; [ gebner ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user