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

python312Packages.aiosmb: 0.4.10 -> 0.4.11 (#340357)

parents 0cbd052d cbe8a341
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
  prompt-toolkit,
  pycryptodomex,
  pythonOlder,
  setuptools,
  six,
  tqdm,
  winacl,
@@ -18,17 +19,19 @@

buildPythonPackage rec {
  pname = "aiosmb";
  version = "0.4.10";
  format = "setuptools";
  version = "0.4.11";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-uN5lbhuPt9axp2ZTTxDgHuDRwlQjXANEkGPgQJL1o90=";
    hash = "sha256-bWb1HtI1T3byBmE+rA1j83z9ntRL6figZZTUECRCc9c=";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    asyauth
    asysocks
    colorama
@@ -51,7 +54,7 @@ buildPythonPackage rec {
    description = "Python SMB library";
    homepage = "https://github.com/skelsec/aiosmb";
    changelog = "https://github.com/skelsec/aiosmb/releases/tag/${version}";
    license = with licenses; [ mit ];
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}