blob: 32b91dbca71adc60705568a6afc14a24f87b70f0 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
networkx,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "importlab";
version = "0.8.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-s4k4U7H26wJ9pQnDtA5nh+ld1mtLZvGzYTqtd1VuFGU=";
};
propagatedBuildInputs = [ networkx ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [ "tests/test_parsepy.py" ];
# Test fails on darwin filesystem
disabledTests = [ "testIsDir" ];
pythonImportsCheck = [ "importlab" ];
meta = {
description = "Library that automatically infers dependencies for Python files";
mainProgram = "importlab";
homepage = "https://github.com/google/importlab";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sei40kr ];
};
}
|