depot/third_party/nixpkgs/pkgs/development/python-modules/arc4/default.nix
Default email c7e6337bd0 Project import generated by Copybara.
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
2023-04-29 12:46:19 -04:00

36 lines
681 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "arc4";
version = "0.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "manicmaniac";
repo = pname;
rev = version;
hash = "sha256-DlZIygf5v3ZNY2XFmrKOA15ccMo3Rv0kf6hZJ0CskeQ=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"arc4"
];
meta = with lib; {
description = "ARCFOUR (RC4) cipher implementation";
homepage = "https://github.com/manicmaniac/arc4";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};
}