Unverified Commit 77a4ca2e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.generic: 1.1.3 -> 1.1.4 (#392369)

parents ed12d29a 792bcda7
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pythonOlder,
  fetchPypi,
  exceptiongroup,
  fetchPypi,
  poetry-core,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "generic";
  version = "1.1.3";
  disabled = pythonOlder "3.7";
  version = "1.1.4";
  pyproject = true;

  format = "pyproject";
  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-d4+CRv1uecIdS4t23cAI34s/PdIFYNQXfABuRWjzCUQ=";
    hash = "sha256-3QcFbbWgCJcL37MwiK1Sv7LG6N60zsw93CupD4Xzp/w=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [ poetry-core ];

  propagatedBuildInputs = [ exceptiongroup ];
  dependencies = [ exceptiongroup ];

  pythonImportsCheck = [ "generic" ];

  meta = with lib; {
    description = "Generic programming (Multiple dispatch) library for Python";
    maintainers = [ ];
    homepage = "https://github.com/gaphor/generic";
    changelog = "https://github.com/gaphor/generic/releases/tag/${version}";
    license = licenses.bsd3;
    maintainers = [ ];
  };
}