Merge pull request #191640 from fabaff/aiosmb-bump
python310Packages.aiosmb: 0.3.8 -> 0.4.2
This commit is contained in:
commit
7d6c33a847
4 changed files with 65 additions and 5 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, asyauth
|
||||
, asysocks
|
||||
, buildPythonPackage
|
||||
, colorama
|
||||
|
@ -15,17 +16,18 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiosmb";
|
||||
version = "0.3.8";
|
||||
version = "0.4.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-CvqQEJPwrZHQuEId7GbIC9LpyyN6jaQFmEQTpddHU5g=";
|
||||
hash = "sha256-h8wYBuxLq2JiQyGQFPirGblcSjtGqoi9ODvCNLH9ec8=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
asyauth
|
||||
asysocks
|
||||
colorama
|
||||
minikerberos
|
||||
|
|
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 ];
|
||||
};
|
||||
}
|
|
@ -1,24 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, cryptography
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "winacl";
|
||||
version = "0.1.3";
|
||||
version = "0.1.5";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-G6xWep0hMACCqiJGuw+UpZH8qOIY4WO6sY3w4y7v6gY=";
|
||||
hash = "sha256-8/dLFbzn7ARuJ27MA8LSMCykBdEntYQXuOyj/yqjaWE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cryptography
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "cryptography>=38.0.1" "cryptography"
|
||||
'';
|
||||
|
||||
# Project doesn't have tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "winacl" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"winacl"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module for ACL/ACE/Security descriptor manipulation";
|
||||
|
|
|
@ -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