python3Packages.parameter-decorators: init at 0.0.2
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "parameter-decorators";
|
||||
version = "0.0.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matan1008";
|
||||
repo = "parameter-decorators";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-ZTgUsBc2ArnRPR4k0Od2A571iFfu+oupCxEqzk2cTUQ=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
pythonImportsCheck = [ "parameter_decorators" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/matan1008/parameter-decorators/releases/tag/${src.tag}";
|
||||
description = "Handy decorators for converting parameters";
|
||||
homepage = "https://github.com/matan1008/parameter-decorators";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = [ lib.maintainers.dotlambda ];
|
||||
};
|
||||
}
|
||||
@@ -11449,6 +11449,8 @@ self: super: with self; {
|
||||
|
||||
paramax = callPackage ../development/python-modules/paramax { };
|
||||
|
||||
parameter-decorators = callPackage ../development/python-modules/parameter-decorators { };
|
||||
|
||||
parameter-expansion-patched =
|
||||
callPackage ../development/python-modules/parameter-expansion-patched
|
||||
{ };
|
||||
|
||||
Reference in New Issue
Block a user