nixpkgs/pkgs/development/python-modules/fastentrypoints/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
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>
2025-12-10 18:09:49 +01:00

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 ];
};
}