Files
nixpkgs/pkgs/development/python-modules/asyauth/default.nix
T
2025-12-31 10:16:27 +01:00

44 lines
815 B
Nix

{
lib,
asn1crypto,
asysocks,
buildPythonPackage,
fetchPypi,
minikerberos,
setuptools,
unicrypto,
}:
buildPythonPackage rec {
pname = "asyauth";
version = "0.0.23";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-NvA4TdsrYloQMzNjyv4ZDW6cntF/0Hs+KIdkGjzGJvA=";
};
build-system = [ setuptools ];
dependencies = [
asn1crypto
asysocks
minikerberos
unicrypto
];
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [ "asyauth" ];
meta = {
description = "Unified authentication library";
homepage = "https://github.com/skelsec/asyauth";
changelog = "https://github.com/skelsec/asyauth/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}