python313Packages.publicsuffixlist: 1.0.2.20250122 -> 1.0.2.20250124 (#376319)
[NixPkgs.git] / pkgs / development / python-modules / arc4 / default.nix
blob6706519259c7fd1768eb4586f425fe57603f47e1
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "arc4";
11   version = "0.4.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "manicmaniac";
18     repo = pname;
19     rev = version;
20     hash = "sha256-DlZIygf5v3ZNY2XFmrKOA15ccMo3Rv0kf6hZJ0CskeQ=";
21   };
23   nativeCheckInputs = [ pytestCheckHook ];
25   pythonImportsCheck = [ "arc4" ];
27   meta = with lib; {
28     description = "ARCFOUR (RC4) cipher implementation";
29     homepage = "https://github.com/manicmaniac/arc4";
30     license = with licenses; [ bsd3 ];
31     maintainers = with maintainers; [ fab ];
32   };