10 buildPythonPackage rec {
12 version = "0.4.2.post1";
15 src = fetchFromGitHub {
16 owner = "serge-sans-paille";
18 rev = "refs/tags/${version}";
19 hash = "sha256-rNMgCEkI6p9KtLSz/2jVJ9rPeJzxv5rT+Pu6OHM8z70=";
22 build-system = [ setuptools ];
24 dependencies = [ gast ];
26 pythonImportsCheck = [ "beniget" ];
28 nativeCheckInputs = [ pytestCheckHook ];
31 description = "Extract semantic information about static Python code";
32 homepage = "https://github.com/serge-sans-paille/beniget";
33 license = lib.licenses.bsd3;
34 maintainers = with lib.maintainers; [ ];