blob: ab442ae90fa46d9a3a355daef77743127d0bc575 (
plain) (
blame)
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
40
41
42
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
mock,
pytestCheckHook,
pythonOlder,
setuptools,
unstableGitUpdater,
}:
buildPythonPackage rec {
pname = "base64io";
version = "1.0.3-unstable-2024-06-24";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "aws";
repo = "base64io-python";
rev = "f3dd88bf0db6eb412c55ff579f0aa9f39d970c41";
hash = "sha256-znQlPlS+jzPiHNBvnDnZ8l1pZP6iuYqExDlPii4dJwM=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
mock
pytestCheckHook
];
passthru.updateScript = unstableGitUpdater { };
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 ];
};
}
|