blob: 44e9fe52cc4a102655497631989943997b9cd2b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "fastentrypoints";
version = "0.12";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "02s1j8i2dzbpbwgq2a3fiqwm3cnmhii2qzc0k42l0rdxd4a4ya7z";
};
meta = {
description = "Makes entry_points specified in setup.py load more quickly";
mainProgram = "fastep";
homepage = "https://github.com/ninjaaron/fast-entry_points";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ nixy ];
};
}
|