python3Packages.unicrypto: init at 0.0.2
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pycryptodomex
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "unicrypto";
|
||||
version = "0.0.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-ripcH3XJW5i8+Sc6N5OzMrIfHzbjFbHmEiwRP24rRRo=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -10352,6 +10352,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