blob: 1bf1fc0db692df658a3e7ecbcb65d32ea198dc0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
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 ];
};
}
|