My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/importlab/default.nix

33 lines
760 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, networkx
, pytestCheckHook
}:
buildPythonPackage {
pname = "importlab";
version = "0.7";
src = fetchFromGitHub {
owner = "google";
repo = "importlab";
rev = "676d17cd41ac68de6ebb48fb71780ad6110c4ae3";
sha256 = "sha256-O8y1c65NQ+19BnGnUnWrA0jYUqF+726CFAcWzHFOiHE=";
};
propagatedBuildInputs = [ networkx ];
checkInputs = [ pytestCheckHook ];
disabledTestPaths = [ "tests/test_parsepy.py" ];
pythonImportsCheck = [ "importlab" ];
meta = with lib; {
description = "A library that automatically infers dependencies for Python files";
homepage = "https://github.com/google/importlab";
license = licenses.mit;
maintainers = with maintainers; [ sei40kr ];
};
}