Loading pkgs/development/python-modules/arc4/default.nix +8 −5 Original line number Diff line number Diff line Loading @@ -3,20 +3,23 @@ buildPythonPackage, fetchFromGitHub, pytestCheckHook, setuptools, }: buildPythonPackage rec { buildPythonPackage (finalAttrs: { pname = "arc4"; version = "0.5.0"; format = "setuptools"; pyproject = true; src = fetchFromGitHub { owner = "manicmaniac"; repo = "arc4"; rev = version; tag = finalAttrs.version; hash = "sha256-kEgyZQmVdOmD/KkmEKxgZb9Hj0jGJswCJI7Np5TI1K4="; }; build-system = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "arc4" ]; Loading @@ -24,7 +27,7 @@ buildPythonPackage rec { meta = { description = "ARCFOUR (RC4) cipher implementation"; homepage = "https://github.com/manicmaniac/arc4"; license = with lib.licenses; [ bsd3 ]; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fab ]; }; } }) Loading
pkgs/development/python-modules/arc4/default.nix +8 −5 Original line number Diff line number Diff line Loading @@ -3,20 +3,23 @@ buildPythonPackage, fetchFromGitHub, pytestCheckHook, setuptools, }: buildPythonPackage rec { buildPythonPackage (finalAttrs: { pname = "arc4"; version = "0.5.0"; format = "setuptools"; pyproject = true; src = fetchFromGitHub { owner = "manicmaniac"; repo = "arc4"; rev = version; tag = finalAttrs.version; hash = "sha256-kEgyZQmVdOmD/KkmEKxgZb9Hj0jGJswCJI7Np5TI1K4="; }; build-system = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "arc4" ]; Loading @@ -24,7 +27,7 @@ buildPythonPackage rec { meta = { description = "ARCFOUR (RC4) cipher implementation"; homepage = "https://github.com/manicmaniac/arc4"; license = with lib.licenses; [ bsd3 ]; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fab ]; }; } })