Unverified Commit 91013a2c authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.crccheck: modernize (#464075)

parents 39b97d08 7e1cb4be
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -7,12 +7,9 @@
  setuptools-scm,
}:

let
buildPythonPackage rec {
  pname = "crccheck";
  version = "1.3.1";
in
buildPythonPackage {
  inherit pname version;
  pyproject = true;

  src = fetchFromGitHub {
@@ -29,9 +26,12 @@ buildPythonPackage {

  nativeCheckInputs = [ unittestCheckHook ];

  pythonImportsCheck = [ "crccheck" ];

  meta = with lib; {
    description = "Python library for CRCs and checksums";
    homepage = "https://github.com/MartinScharrer/crccheck";
    changelog = "https://github.com/MartinScharrer/crccheck/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = [ ];
    platforms = platforms.linux;