depot/third_party/nixpkgs/pkgs/development/python-modules/base64io/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

30 lines
679 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, mock
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "base64io";
version = "1.0.3";
format = "setuptools";
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 ];
};
}