Unverified Commit 66eb933b authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.aioftp: 0.24.1 -> 0.25.1 (#398772)

parents 78a59d21 40c6ae96
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@
  fetchPypi,
  pytest-asyncio,
  pytest-cov-stub,
  pytest-mock,
  pytestCheckHook,
  pythonOlder,
  setuptools,
@@ -15,14 +16,14 @@

buildPythonPackage rec {
  pname = "aioftp";
  version = "0.24.1";
  version = "0.25.1";
  pyproject = true;

  disabled = pythonOlder "3.11";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-dKx8buSFXk24/6LC+xWXeJppeBfEe6IaVOuQOfQ1aK8=";
    hash = "sha256-TS+wt30/2kKCz/zQW6cFZ9iUDNn97t8QvfeIoAEggBY=";
  };

  build-system = [ setuptools ];
@@ -35,6 +36,7 @@ buildPythonPackage rec {
    async-timeout
    pytest-asyncio
    pytest-cov-stub
    pytest-mock
    pytestCheckHook
    trustme
  ] ++ lib.flatten (builtins.attrValues optional-dependencies);
@@ -49,6 +51,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python FTP client/server for asyncio";
    homepage = "https://aioftp.readthedocs.io/";
    changelog = "https://github.com/aio-libs/aioftp/blob/${version}/history.rst";
    license = licenses.asl20;
    maintainers = [ ];
  };
+7 −2
Original line number Diff line number Diff line
@@ -4,15 +4,17 @@
  fetchPypi,
  pytest-asyncio,
  pytest-trio,
  pytest-mock,
  pytestCheckHook,
  pythonOlder,
  setuptools,
  trio,
}:

buildPythonPackage rec {
  pname = "siosocks";
  version = "0.3.0";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.6";

@@ -21,10 +23,13 @@ buildPythonPackage rec {
    hash = "sha256-uja79vWhPYOhhTUBIh+XpS4GnrYJy0/XpDXXQjnyHWM=";
  };

  propagatedBuildInputs = [ trio ];
  build-system = [ setuptools ];

  dependencies = [ trio ];

  nativeCheckInputs = [
    pytest-asyncio
    pytest-mock
    pytestCheckHook
    pytest-trio
  ];