fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
27 lines
565 B
Nix
27 lines
565 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "unpaddedbase64";
|
|
version = "2.1.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matrix-org";
|
|
repo = "python-${pname}";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "1n6har8pxv0mqb96lanzihp1xf76aa17jw3977drb1fgz947pnmz";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/matrix-org/python-unpaddedbase64";
|
|
description = "Unpadded Base64";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|