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

python3Packages.smbprotocol: 1.16.0 -> 1.16.1 (#507409)

parents b2b0e7f4 8de83745
Loading
Loading
Loading
Loading
+12 −9
Original line number Diff line number Diff line
@@ -7,21 +7,24 @@
  pyspnego,
  pytest-mock,
  pytestCheckHook,
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "smbprotocol";
  version = "1.16.0";
  format = "setuptools";
  version = "1.16.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jborean93";
    repo = "smbprotocol";
    tag = "v${version}";
    hash = "sha256-OZedYBOMBO/EegSvg7aq5lIOWdxSOHh+yHDFZ7bwLec=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-Mxsvfn0O4f+SnofBVxKgmJ/e0iM7c/XjONDEtMVHvkc=";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    cryptography
    pyspnego
  ];
@@ -46,8 +49,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python SMBv2 and v3 Client";
    homepage = "https://github.com/jborean93/smbprotocol";
    changelog = "https://github.com/jborean93/smbprotocol/releases/tag/${src.tag}";
    license = with lib.licenses; [ mit ];
    changelog = "https://github.com/jborean93/smbprotocol/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})