Commit 4ff5bde5 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python3Packages.ebcdic: 1.1.1 -> 2.0.0

parent 006d5b41
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})