1{ lib
2, buildPythonPackage
3, fetchPypi
4, mock
5, pytestCheckHook
6}:
7
8buildPythonPackage rec {
9 pname = "base64io";
10 version = "1.0.3";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-JPLQ/nZcNTOeGy0zqpX5E3sbdltZQWT60QFsFYJ6cHM=";
15 };
16
17 nativeCheckInputs = [
18 mock
19 pytestCheckHook
20 ];
21
22 meta = with lib; {
23 homepage = "https://base64io-python.readthedocs.io/";
24 changelog = "https://github.com/aws/base64io-python/blob/${version}/CHANGELOG.rst";
25 description = "Python stream implementation for base64 encoding/decoding";
26 license = licenses.asl20;
27 maintainers = with maintainers; [ anthonyroussel ];
28 };
29}