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