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

Merge pull request #241971 from fabaff/in-n-out-bump

python311Packages.in-n-out: 0.1.7 -> 0.1.8
parents f8043b52 5a5c6fd6
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -6,27 +6,28 @@
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, setuptools
, setuptools-scm
, hatchling
, hatch-vcs
, toolz
}:

buildPythonPackage rec {
  pname = "in-n-out";
  version = "0.1.7";
  format = "setuptools";
  version = "0.1.8";
  format = "pyproject";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-g4Dw0ejB6BxcMpRZGgxNDeAyuY93UROVsIrAwv6vSqY=";
    pname = "in_n_out";
    inherit version;
    hash = "sha256-gWKvh4fmgutLNtBH+RQZnYDxEk46QUIM1T3mgOfQolQ=";
  };

  nativeBuildInputs = [
    cython_3
    setuptools
    setuptools-scm
    hatchling
    hatch-vcs
  ];

  propagatedBuildInputs = [
@@ -52,7 +53,7 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Module for dependency injection and result processing";
    homepage = "https://app-model.readthedocs.io/";
    homepage = "https://github.com/pyapp-kit/in-n-out";
    changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];