blob: 1eac8eccd9cdcff52a1ea0093e5b6fc81de8c2f2 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "unpaddedbase64";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "matrix-org";
repo = "python-${pname}";
tag = "v${version}";
sha256 = "1n6har8pxv0mqb96lanzihp1xf76aa17jw3977drb1fgz947pnmz";
};
nativeBuildInputs = [ poetry-core ];
meta = {
homepage = "https://github.com/matrix-org/python-unpaddedbase64";
description = "Unpadded Base64";
license = lib.licenses.asl20;
};
}
|