depot/third_party/nixpkgs/pkgs/development/python-modules/linetable/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

34 lines
809 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "linetable";
version = "0.0.3";
format = "setuptools";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "amol-";
repo = "linetable";
rev = "refs/tags/${version}";
hash = "sha256-nVZVxK6uB5TP0pReaEya3/lFXFkiqpnnaWqYzxzO6bM=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "linetable" ];
meta = with lib; {
description = "Library to parse and generate co_linetable attributes in Python code objects";
homepage = "https://github.com/amol-/linetable";
changelog = "https://github.com/amol-/linetable/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}