2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi }:
|
2019-05-01 10:18:50 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fastentrypoints";
|
|
|
|
version = "0.12";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "02s1j8i2dzbpbwgq2a3fiqwm3cnmhii2qzc0k42l0rdxd4a4ya7z";
|
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-05-01 10:18:50 -07:00
|
|
|
description = "Makes entry_points specified in setup.py load more quickly";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ninjaaron/fast-entry_points";
|
2019-05-01 10:18:50 -07:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ nixy ];
|
|
|
|
};
|
|
|
|
}
|