python310Packages.asyauth: init at 0.0.3

This commit is contained in:
Fabian Affolter 2022-09-17 13:02:54 +02:00
parent 38a08b1cbe
commit 24b4c08a1e
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, asn1crypto
, asysocks
, buildPythonPackage
, fetchPypi
, minikerberos
, pythonOlder
, unicrypto
}:
buildPythonPackage rec {
pname = "asyauth";
version = "0.0.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-8qSYaPgidfDH8aebLFtLhLxt253xTHTkC0xwV346KdM=";
};
propagatedBuildInputs = [
asn1crypto
asysocks
minikerberos
unicrypto
];
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [
"asyauth"
];
meta = with lib; {
description = "Unified authentication library";
homepage = "https://github.com/skelsec/asyauth";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -782,6 +782,8 @@ in {
astunparse = callPackage ../development/python-modules/astunparse { };
asyauth = callPackage ../development/python-modules/asyauth { };
async_generator = callPackage ../development/python-modules/async_generator { };
async-dns = callPackage ../development/python-modules/async-dns { };