nixpkgs/pkgs/development/python-modules/unicrypto/default.nix
2022-06-13 04:54:57 +00:00

40 lines
728 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pycryptodome
, pycryptodomex
, pythonOlder
}:
buildPythonPackage rec {
pname = "unicrypto";
version = "0.0.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-BIf53ZAJwybulTGnlBKuGK1nNCWhyADWSUe5b96wTN8=";
};
propagatedBuildInputs = [
pycryptodome
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 ];
};
}