tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3.pkgs.plugincode: init at 21.1.21
helbling.dev
5 years ago
f72f9ff6
68f660dc
+49
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
plugincode
default.nix
top-level
python-packages.nix
+47
pkgs/development/python-modules/plugincode/default.nix
···
1
1
+
{ lib
2
2
+
, fetchPypi
3
3
+
, buildPythonPackage
4
4
+
, setuptools-scm
5
5
+
, click
6
6
+
, commoncode
7
7
+
, pluggy
8
8
+
, pytestCheckHook
9
9
+
, pytest-xdist
10
10
+
}:
11
11
+
buildPythonPackage rec {
12
12
+
pname = "plugincode";
13
13
+
version = "21.1.21";
14
14
+
15
15
+
src = fetchPypi {
16
16
+
inherit pname version;
17
17
+
sha256 = "97b5a2c96f0365c80240be103ecd86411c68b11a16f137913cbea9129c54907a";
18
18
+
};
19
19
+
20
20
+
dontConfigure = true;
21
21
+
22
22
+
nativeBuildInputs = [
23
23
+
setuptools-scm
24
24
+
];
25
25
+
26
26
+
propagatedBuildInputs = [
27
27
+
click
28
28
+
commoncode
29
29
+
pluggy
30
30
+
];
31
31
+
32
32
+
checkInputs = [
33
33
+
pytestCheckHook
34
34
+
pytest-xdist
35
35
+
];
36
36
+
37
37
+
pythonImportsCheck = [
38
38
+
"plugincode"
39
39
+
];
40
40
+
41
41
+
meta = with lib; {
42
42
+
description = "A library that provides plugin functionality for ScanCode toolkit";
43
43
+
homepage = "https://github.com/nexB/plugincode";
44
44
+
license = licenses.asl20;
45
45
+
maintainers = teams.determinatesystems.members;
46
46
+
};
47
47
+
}
+2
pkgs/top-level/python-packages.nix
···
5329
5329
5330
5330
pluggy = callPackage ../development/python-modules/pluggy { };
5331
5331
5332
5332
+
plugincode = callPackage ../development/python-modules/plugincode { };
5333
5333
+
5332
5334
pluginbase = callPackage ../development/python-modules/pluginbase { };
5333
5335
5334
5336
plugnplay = callPackage ../development/python-modules/plugnplay { };