pythonPackages.unpaddedbase64: 1.1.0 -> 2.1.0
This commit is contained in:
parent
8c934146d7
commit
aa9f35493f
|
@ -1,19 +1,25 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "unpaddedbase64";
|
pname = "unpaddedbase64";
|
||||||
version = "1.1.0";
|
version = "2.1.0";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "matrix-org";
|
owner = "matrix-org";
|
||||||
repo = "python-${pname}";
|
repo = "python-${pname}";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "0if3fjfxga0bwdq47v77fs9hrcqpmwdxry2i2a7pdqsp95258nxd";
|
sha256 = "1n6har8pxv0mqb96lanzihp1xf76aa17jw3977drb1fgz947pnmz";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/matrix-org/python-unpaddedbase64";
|
homepage = "https://github.com/matrix-org/python-unpaddedbase64";
|
||||||
description = "Unpadded Base64";
|
description = "Unpadded Base64";
|
||||||
|
|
Loading…
Reference in New Issue