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