depot/third_party/nixpkgs/pkgs/development/python-modules/arc4/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

36 lines
681 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "arc4";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "manicmaniac";
repo = pname;
rev = version;
hash = "sha256-z8zj46/xX/gXtWzlmnHuAsnK3xYCL4NM5/xpYcH+Qlo=";
};
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 ];
};
}