python3Packages.ebcdic: 1.1.1 -> 2.0.0

This commit is contained in:
Fabian Affolter
2026-03-12 12:48:02 +01:00
parent 006d5b4148
commit 4ff5bde55c
@@ -2,25 +2,25 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
flit-core,
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "ebcdic";
version = "1.1.1";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "roskakori";
repo = "CodecMapper";
tag = "v${version}";
hash = "sha256-gRyZychcF3wYocgVbdF255cSuZh/cl8X0WH/Iplkmxc=";
tag = "v${finalAttrs.version}";
hash = "sha256-71EMWUGoJrsc3EOVHeV4xqSJRKoA7Sz2dvmZJ1sjQCg=";
};
sourceRoot = "${src.name}/${pname}";
sourceRoot = "${finalAttrs.src.name}/${finalAttrs.pname}";
nativeBuildInputs = [ setuptools ];
build-system = [ flit-core ];
nativeCheckInputs = [ pytestCheckHook ];
@@ -40,4 +40,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fab ];
};
}
})