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

This commit is contained in:
Fabian Affolter
2025-11-19 16:35:40 +00:00
committed by GitHub
2 changed files with 11 additions and 11 deletions
@@ -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 ];
@@ -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 ];
};
}