8 buildPythonPackage rec {
11 format = "setuptools";
13 disabled = pythonOlder "3.6";
15 src = fetchFromGitHub {
18 rev = "refs/tags/${version}";
19 hash = "sha256-yA1foeGhgOXZArc/nZfS1tbGyONXJZ9lW+Zcx7hCedM=";
22 pythonImportsCheck = [
31 ${python.interpreter} testsuite.py
36 description = "Module for the analysis of Python import statements";
37 homepage = "https://github.com/mgedmin/findimports";
38 changelog = "https://github.com/mgedmin/findimports/blob/${version}/CHANGES.rst";
39 license = with licenses; [ gpl2Only /* or */ gpl3Only ];
40 maintainers = with maintainers; [ fab ];