Unverified Commit 04a35bc5 authored by Moraxyc's avatar Moraxyc
Browse files

python313Packages.nonestorage: init at 0.1.0

parent 4aafbc10
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };