python313Packages.nonestorage: init at 0.1.0

This commit is contained in:
Moraxyc
2025-11-07 00:04:41 +08:00
parent 4aafbc1090
commit 04a35bc5ef
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
}:
buildPythonPackage rec {
pname = "nonestorage";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "nonebot";
repo = "nonestorage";
tag = "v${version}";
hash = "sha256-Y8Ywpp5/FRT8jIhSaMtuzMXs3UJROh5SrFdIZD7ysBA=";
};
build-system = [ hatchling ];
pythonImportsCheck = [ "nonestorage" ];
# no test
doCheck = false;
meta = {
description = "Simple library that provides local storage folder detect";
homepage = "https://github.com/nonebot/nonestorage";
changelog = "https://github.com/nonebot/nonestorage/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ moraxyc ];
};
}
+2
View File
@@ -10682,6 +10682,8 @@ self: super: with self; {
noneprompt = callPackage ../development/python-modules/noneprompt { };
nonestorage = callPackage ../development/python-modules/nonestorage { };
norfair = callPackage ../development/python-modules/norfair { };
normality = callPackage ../development/python-modules/normality { };