10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
21 hash = "sha256-gRyZychcF3wYocgVbdF255cSuZh/cl8X0WH/Iplkmxc=";
24 sourceRoot = "${src.name}/${pname}";
26 nativeBuildInputs = [ setuptools ];
28 nativeCheckInputs = [ pytestCheckHook ];
31 # https://github.com/roskakori/CodecMapper/issues/18
32 "test_can_lookup_ebcdic_codec"
33 "test_can_recode_euro_sign"
35 "test_has_ignored_codec_names"
38 pythonImportsCheck = [ "ebcdic" ];
41 description = "Additional EBCDIC codecs";
42 homepage = "https://github.com/roskakori/CodecMapper/tree/master/ebcdic";
43 license = licenses.bsd2;
44 maintainers = with maintainers; [ fab ];