depot/third_party/nixpkgs/pkgs/development/python-modules/base64io/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

29 lines
654 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, mock
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "base64io";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-JPLQ/nZcNTOeGy0zqpX5E3sbdltZQWT60QFsFYJ6cHM=";
};
nativeCheckInputs = [
mock
pytestCheckHook
];
meta = with lib; {
homepage = "https://base64io-python.readthedocs.io/";
changelog = "https://github.com/aws/base64io-python/blob/${version}/CHANGELOG.rst";
description = "Python stream implementation for base64 encoding/decoding";
license = licenses.asl20;
maintainers = with maintainers; [ anthonyroussel ];
};
}