python310Packages.asyauth: init at 0.0.3
This commit is contained in:
parent
38a08b1cbe
commit
24b4c08a1e
2 changed files with 45 additions and 0 deletions
43
pkgs/development/python-modules/asyauth/default.nix
Normal file
43
pkgs/development/python-modules/asyauth/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue