summary refs log tree commit diff
path: root/pkgs/development/python-modules/base64io/default.nix
blob: 8e5b121759fc4757b7b46c240a207ecf8f09ed3a (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
{ 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.apsl20;
    maintainers = with maintainers; [ anthonyroussel ];
  };
}