1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "pluginbase";
10 version = "1.0.1";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-/2wzqY/OIy6cc4QdeHpkPeV0k3Bp8NGBRwKNcNfe4oc=";
16 };
17
18 build-system = [ setuptools ];
19
20 # https://github.com/mitsuhiko/pluginbase/issues/24
21 doCheck = false;
22
23 pythonImportsCheck = [ "pluginbase" ];
24
25 meta = {
26 description = "Support library for building plugins systems in Python";
27 homepage = "https://github.com/mitsuhiko/pluginbase";
28 changelog = "https://github.com/mitsuhiko/pluginbase/releases/tag/${version}";
29 license = lib.licenses.bsd3;
30 maintainers = [ ];
31 };
32}