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

python311Packages.in-n-out: 0.1.7 -> 0.1.8
This commit is contained in:
Fabian Affolter 2023-07-07 18:24:16 +02:00 committed by GitHub
commit e08fab0406
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,27 +6,28 @@
, pytestCheckHook , pytestCheckHook
, pythonAtLeast , pythonAtLeast
, pythonOlder , pythonOlder
, setuptools , hatchling
, setuptools-scm , hatch-vcs
, toolz , toolz
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "in-n-out"; pname = "in-n-out";
version = "0.1.7"; version = "0.1.8";
format = "setuptools"; format = "pyproject";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; pname = "in_n_out";
hash = "sha256-g4Dw0ejB6BxcMpRZGgxNDeAyuY93UROVsIrAwv6vSqY="; inherit version;
hash = "sha256-gWKvh4fmgutLNtBH+RQZnYDxEk46QUIM1T3mgOfQolQ=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cython_3 cython_3
setuptools hatchling
setuptools-scm hatch-vcs
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -52,7 +53,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Module for dependency injection and result processing"; 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"; changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];