1{ lib
2, buildPythonPackage
3, pythonOlder
4, fetchPypi
5, flit-core
6, configparser
7, pytestCheckHook
8}:
9
10buildPythonPackage rec {
11 pname = "entrypoints";
12 version = "0.4";
13 format = "pyproject";
14
15 disabled = pythonOlder "3.6";
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "sha256-twbt2qkhihnrzWe1aBjwW7J1ibHKno15e3Sv+tTMrNQ=";
20 };
21
22 nativeBuildInputs = [
23 flit-core
24 ];
25
26 checkInputs = [
27 pytestCheckHook
28 ];
29
30 meta = with lib; {
31 description = "Discover and load entry points from installed packages";
32 homepage = "https://github.com/takluyver/entrypoints";
33 license = licenses.mit;
34 maintainers = with maintainers; [ ];
35 };
36}