blob: e49670f6e85605e18f4d88db490526ed122b4ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
mock,
pytestCheckHook,
setuptools,
unstableGitUpdater,
}:
buildPythonPackage rec {
pname = "base64io";
version = "1.0.3-unstable-2025-01-09";
pyproject = true;
src = fetchFromGitHub {
owner = "aws";
repo = "base64io-python";
rev = "1bd47f7f8cfeeff654ea0edda3fbb69f840ccd05";
hash = "sha256-1MUWjFFitJ3nqvVwAQYcAVVPhPs6NEgq7t/mI71u2Bk=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
mock
pytestCheckHook
];
passthru.updateScript = unstableGitUpdater { };
meta = {
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 = lib.licenses.asl20;
maintainers = with lib.maintainers; [ anthonyroussel ];
};
}
|