1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "fastentrypoints";
5 version = "0.12";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "02s1j8i2dzbpbwgq2a3fiqwm3cnmhii2qzc0k42l0rdxd4a4ya7z";
10 };
11
12 meta = with lib; {
13 description = "Makes entry_points specified in setup.py load more quickly";
14 homepage = "https://github.com/ninjaaron/fast-entry_points";
15 license = licenses.bsd2;
16 maintainers = with maintainers; [ nixy ];
17 };
18}