Commit ee78da9d authored by Doron Behar's avatar Doron Behar
Browse files

python3.pkgs.fastlite: init at 0.2.4

parent 8cbd3c87
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  setuptools,

  # dependencies
  fastcore,
  apswutils,
}:

buildPythonPackage (finalAttrs: {
  pname = "fastlite";
  version = "0.2.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "AnswerDotAI";
    repo = "fastlite";
    tag = finalAttrs.version;
    hash = "sha256-q2eGP/GRWqgbvWOVuLch33VkYbedeDRsxsnN+xsevPI=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    fastcore
    apswutils
  ];

  # No tests
  doCheck = false;

  pythonImportsCheck = [
    "fastlite"
  ];

  meta = {
    description = "A bit of extra usability for sqlite";
    homepage = "https://github.com/AnswerDotAI/fastlite";
    changelog = "https://github.com/AnswerDotAI/fastlite/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -5357,6 +5357,8 @@ self: super: with self; {
  fastjsonschema = callPackage ../development/python-modules/fastjsonschema { };
  fastlite = callPackage ../development/python-modules/fastlite { };
  fastmcp = callPackage ../development/python-modules/fastmcp { };
  fastmri = callPackage ../development/python-modules/fastmri { };