blob: c3e89726e99953b07790db27dd76eebe1b6e41d0 (
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
37
38
39
40
41
42
43
44
45
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
nix-update-script,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pluginlib";
version = "0.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Rockhopper-Technologies";
repo = "pluginlib";
tag = version;
hash = "sha256-mt3VE8iJPCmbws8bAdYMK9to446z8FQtsMZOlkLVUIU=";
};
build-system = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pluginlib"
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Framework for creating and importing plugins in Python";
homepage = "https://github.com/Rockhopper-Technologies/pluginlib";
changelog = "https://github.com/Rockhopper-Technologies/pluginlib/releases/tag/${version}";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [
jpds
];
};
}
|