python3.pkgs.fastlite: init at 0.2.4
This commit is contained in:
@@ -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 = [ ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user