Commit df473425 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.linetable: init at 0.0.3

parent c680c313
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5759,6 +5759,8 @@ self: super: with self; {

  line_profiler = callPackage ../development/python-modules/line_profiler { };

  linetable = callPackage ../development/python-modules/linetable { };

  lingua = callPackage ../development/python-modules/lingua { };

  linkify-it-py = callPackage ../development/python-modules/linkify-it-py { };