blob: 4a12cf046bc6e24afb2d0e7542c19c0977bf1ee0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 ];
};
}
|