python3Packages.pyasn1: 0.6.2 -> 0.6.3; python3Packages.brother: 6.0.0 -> 6.1.0 (#510443)

This commit is contained in:
Martin Weinelt
2026-04-16 00:19:43 +00:00
committed by GitHub
2 changed files with 16 additions and 11 deletions
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "brother";
version = "6.0.0";
version = "6.1.0";
pyproject = true;
disabled = pythonOlder "3.12";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "bieniu";
repo = "brother";
tag = version;
hash = "sha256-kvR4891kaZFHKZhtgrrgtGJZUIwoYE5CsGUEQM7eKvs=";
hash = "sha256-coV2jOxxqwP5LTh9QvyRvBcgVDENEm/IP9LRJu/Me+c=";
};
build-system = [ setuptools ];
@@ -1,29 +1,34 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyasn1";
version = "0.6.2";
version = "0.6.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-m1mislun5PgZfbdobAn7M+ZYuYM5+tuCbpUSYpAXgzs=";
src = fetchFromGitHub {
owner = "pyasn1";
repo = "pyasn1";
tag = "v${finalAttrs.version}";
hash = "sha256-fHpAJ1WSoLwaWuSMcfHjZmnl8oNhADrdjHaYIEmqQiw=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyasn1" ];
meta = {
description = "Generic ASN.1 library for Python";
homepage = "https://pyasn1.readthedocs.io";
changelog = "https://github.com/etingof/pyasn1/blob/master/CHANGES.rst";
changelog = "https://github.com/pyasn1/pyasn1/blob/${finalAttrs.src.tag}/CHANGES.rst";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}
})