blob: fe83e797d97aa9f7ff747b63ec7fa9495955dc86 (
plain) (
blame)
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
|
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, flit-core
, configparser
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "entrypoints";
version = "0.4";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-twbt2qkhihnrzWe1aBjwW7J1ibHKno15e3Sv+tTMrNQ=";
};
nativeBuildInputs = [
flit-core
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Discover and load entry points from installed packages";
homepage = "https://github.com/takluyver/entrypoints";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}
|