Unverified Commit 61712098 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

nb-cli: 1.4.2 -> 1.5.0; python313Packages.nonestorage: init at 0.1.0 (#456945)

parents 6a967246 e25564b7
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -8,17 +8,18 @@

python3.pkgs.buildPythonApplication rec {
  pname = "nb-cli";
  version = "1.4.2";
  version = "1.5.0";
  pyproject = true;

  src = fetchPypi {
    pname = "nb_cli";
    inherit version;
    hash = "sha256-HZey1RVpx/fHNxdEue1LczYbwYUxEb3i3fHpkKHhn+8=";
    hash = "sha256-vZxBjavim4xNp24s7hNsoZK7xoeRJST7NvSRbRTYSz8=";
  };

  pythonRelaxDeps = [
    "watchfiles"
    "noneprompt"
  ];

  build-system = [
@@ -35,8 +36,10 @@ python3.pkgs.buildPythonApplication rec {
    importlib-metadata
    jinja2
    noneprompt
    nonestorage
    pydantic
    pyfiglet
    textual
    tomlkit
    typing-extensions
    virtualenv
+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
@@ -10707,6 +10707,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 { };