depot/third_party/nixpkgs/pkgs/development/python-modules/unicrypto/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

39 lines
728 B
Nix

{ 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 ];
};
}