Loading pkgs/development/python-modules/fastlite/default.nix 0 → 100644 +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 = [ ]; }; }) pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/fastlite/default.nix 0 → 100644 +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 = [ ]; }; })
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading