emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / bytecode / default.nix
blob08c53bb606d57f66c8e372f51dc2043bcb5747ac
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   pytestCheckHook,
7   setuptools-scm,
8 }:
10 buildPythonPackage rec {
11   pname = "bytecode";
12   version = "0.16.0";
13   format = "pyproject";
14   disabled = pythonOlder "3.6";
16   src = fetchFromGitHub {
17     owner = "vstinner";
18     repo = pname;
19     tag = version;
20     hash = "sha256-Nj/GKZC+zZt1M4Qd7CMXQCLwTIu64aidasH4PwBLtzw=";
21   };
23   nativeBuildInputs = [ setuptools-scm ];
25   nativeCheckInputs = [ pytestCheckHook ];
27   pythonImportsCheck = [ "bytecode" ];
29   meta = with lib; {
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 ];
34   };