Merge pull request #166045 from fabaff/bump-minikerberos
python3Packages.minikerberos: 0.2.18 -> 0.2.20
This commit is contained in:
@@ -5,24 +5,26 @@
|
||||
, fetchPypi
|
||||
, oscrypto
|
||||
, pythonOlder
|
||||
, unicrypto
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "minikerberos";
|
||||
version = "0.2.18";
|
||||
version = "0.2.20";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-5bmuCbX4a69sP9SnHkB4OQrOHmFufUTlchHkgu6iBYk=";
|
||||
hash = "sha256-eJ+AImP6GIL3AbEj9u7ASLRc1zG/G1KIcABdrwdAIEc=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
asn1crypto
|
||||
asysocks
|
||||
oscrypto
|
||||
unicrypto
|
||||
];
|
||||
|
||||
# no tests are published: https://github.com/skelsec/minikerberos/pull/5
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pycryptodomex
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "unicrypto";
|
||||
version = "0.0.5";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-aSQPJgSTNGhh5jlpfi/aJF8UZWx98grm2eaxuzassp4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pycryptodomex
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"unicrypto"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unified interface for cryptographic libraries";
|
||||
homepage = "https://github.com/skelsec/unicrypto";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -10354,6 +10354,8 @@ in {
|
||||
unicorn-emu = pkgs.unicorn;
|
||||
};
|
||||
|
||||
unicrypto = callPackage ../development/python-modules/unicrypto { };
|
||||
|
||||
unidecode = callPackage ../development/python-modules/unidecode { };
|
||||
|
||||
unidic-lite = callPackage ../development/python-modules/unidic-lite { };
|
||||
|
||||
Reference in New Issue
Block a user