mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
23 lines
491 B
Nix
23 lines
491 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchgit
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "unpaddedbase64";
|
|
version = "1.1.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/matrix-org/python-unpaddedbase64.git";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0if3fjfxga0bwdq47v77fs9hrcqpmwdxry2i2a7pdqsp95258nxd";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/matrix-org/python-unpaddedbase64";
|
|
description = "Unpadded Base64";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|