10 buildPythonPackage rec {
14 disabled = pythonOlder "3.6";
16 src = fetchFromGitHub {
20 hash = "sha256-Nj/GKZC+zZt1M4Qd7CMXQCLwTIu64aidasH4PwBLtzw=";
23 nativeBuildInputs = [ setuptools-scm ];
25 nativeCheckInputs = [ pytestCheckHook ];
27 pythonImportsCheck = [ "bytecode" ];
30 homepage = "https://github.com/vstinner/bytecode";
31 description = "Python module to generate and modify bytecode";
32 license = licenses.mit;
33 maintainers = with maintainers; [ raboof ];