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

python313Packages.aiosmb: 0.4.13 -> 0.4.14 (#457367)

parents cd683dab d9cfc500
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "aesedb";
  version = "0.1.7";
  version = "0.1.8";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
    owner = "skelsec";
    repo = "aesedb";
    tag = version;
    hash = "sha256-jT5Aru/BqvJf4HpD418+GrkZ0/g2XcTV3oWSOmo0Sbw=";
    hash = "sha256-YoeqxYkohAR6RaQYDXt7T00LCQDSb/o/ddxYRDGP/2s=";
  };

  nativeBuildInputs = [ setuptools ];
+9 −9
Original line number Diff line number Diff line
@@ -4,24 +4,24 @@
  fetchFromGitHub,
  pycryptodome,
  pycryptodomex,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "unicrypto";
  version = "0.0.11";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  version = "0.0.12";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "skelsec";
    repo = "unicrypto";
    tag = version;
    hash = "sha256-quMh4yQSqbwZwWTJYxW/4F0k2c2nh82FEiNCSeQzhvo=";
    hash = "sha256-RYwovFMalBNDPDEVjQ/8/N7DkOMiyeEQ5ESdgCK8RW8=";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    pycryptodome
    pycryptodomex
  ];
@@ -34,8 +34,8 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Unified interface for cryptographic libraries";
    homepage = "https://github.com/skelsec/unicrypto";
    changelog = "https://github.com/skelsec/unicrypto/releases/tag/${version}";
    license = with licenses; [ mit ];
    changelog = "https://github.com/skelsec/unicrypto/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}