blob: d9893289e78d6c2b1ec771a79a747ed0218733b7 (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
# build-system
setuptools,
# tests
pandas,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyfakefs";
version = "5.9.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ZsXGzNQJe0hPh4L5pQeP7gUz1GXg2cr1lMkVfVQ4JVM=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "pyfakefs" ];
nativeCheckInputs = [
pandas
pytestCheckHook
];
enabledTestPaths = [
"pyfakefs/tests"
];
disabledTests = [
"test_expand_root"
]
++ (lib.optionals stdenv.hostPlatform.isDarwin [
# this test fails on darwin due to case-insensitive file system
"test_rename_dir_to_existing_dir"
]);
meta = {
description = "Fake file system that mocks the Python file system modules";
homepage = "https://pyfakefs.org/";
changelog = "https://github.com/jmcgeheeiv/pyfakefs/blob/v${version}/CHANGES.md";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|