mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 11:56:33 +01:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
24 lines
544 B
Nix
24 lines
544 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|