2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-29 16:59:28 +00:00
|
|
|
, buildPythonPackage
|
2020-11-01 22:39:49 +00:00
|
|
|
, fetchFromGitHub
|
2018-10-29 16:59:28 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "unpaddedbase64";
|
|
|
|
version = "1.1.0";
|
|
|
|
|
2020-11-01 22:39:49 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matrix-org";
|
|
|
|
repo = "python-${pname}";
|
2018-10-29 16:59:28 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "0if3fjfxga0bwdq47v77fs9hrcqpmwdxry2i2a7pdqsp95258nxd";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/matrix-org/python-unpaddedbase64";
|
2018-10-29 16:59:28 +00:00
|
|
|
description = "Unpadded Base64";
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|