python310Packages.in-n-out: init at 0.1.6

This commit is contained in:
Fabian Affolter
2023-02-24 21:03:25 +01:00
parent f6e9dc1ae3
commit 56700a8d45
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{ lib
, buildPythonPackage
, cython_3
, fetchPypi
, future
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
}:
buildPythonPackage rec {
pname = "in-n-out";
version = "0.1.6";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PuzjidORMFVlmFZbmnu9O92FoiuXrC8NNRyjwdodriY=";
};
nativeBuildInputs = [
cython_3
setuptools
setuptools-scm
];
propagatedBuildInputs = [
future
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"in_n_out"
];
meta = with lib; {
description = "Module for dependency injection and result processing";
homepage = "https://app-model.readthedocs.io/";
changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -4638,6 +4638,8 @@ self: super: with self; {
imutils = callPackage ../development/python-modules/imutils { };
in-n-out = callPackage ../development/python-modules/in-n-out { };
in-place = callPackage ../development/python-modules/in-place { };
incomfort-client = callPackage ../development/python-modules/incomfort-client { };