nixpkgs/pkgs/development/python-modules/pybase64/default.nix
2023-08-20 05:36:28 +00:00

30 lines
582 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pybase64";
version = "1.3.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-1MZHKrAITr1O4AW7mFFym9xk2PYsb65b2wdrICn0iO4=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pybase64" ];
meta = with lib; {
description = "Fast Base64 encoding/decoding";
homepage = "https://github.com/mayeut/pybase64";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}