755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
39 lines
828 B
Nix
39 lines
828 B
Nix
{
|
|
stdenv,
|
|
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 = with lib; {
|
|
description = "Library that automatically infers dependencies for Python files";
|
|
mainProgram = "importlab";
|
|
homepage = "https://github.com/google/importlab";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sei40kr ];
|
|
};
|
|
}
|