python3.pkgs.fastlite: init at 0.2.4

This commit is contained in:
Doron Behar
2026-02-23 01:00:45 +02:00
parent 8cbd3c8772
commit ee78da9d99
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
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
View File
@@ -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 { };