Merge pull request #261168 from r-ryantm/auto-update/python310Packages.pybase64
python310Packages.pybase64: 1.3.0 -> 1.3.1
This commit is contained in:
commit
d289b5b070
1 changed files with 10 additions and 4 deletions
|
@ -7,22 +7,28 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pybase64";
|
pname = "pybase64";
|
||||||
version = "1.3.0";
|
version = "1.3.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-1MZHKrAITr1O4AW7mFFym9xk2PYsb65b2wdrICn0iO4=";
|
hash = "sha256-I0CC/dcDnLdQxkTi03/Ck+c0XqOl8nmrrC9PyWLZuZY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "pybase64" ];
|
pythonImportsCheck = [
|
||||||
|
"pybase64"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Fast Base64 encoding/decoding";
|
description = "Fast Base64 encoding/decoding";
|
||||||
homepage = "https://github.com/mayeut/pybase64";
|
homepage = "https://github.com/mayeut/pybase64";
|
||||||
|
changelog = "https://github.com/mayeut/pybase64/releases/tag/v${version}";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue