Files
nixpkgs/pkgs/development/python-modules/fastentrypoints/default.nix
T
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

21 lines
539 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "fastentrypoints";
version = "0.12";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "02s1j8i2dzbpbwgq2a3fiqwm3cnmhii2qzc0k42l0rdxd4a4ya7z";
};
meta = with lib; {
description = "Makes entry_points specified in setup.py load more quickly";
mainProgram = "fastep";
homepage = "https://github.com/ninjaaron/fast-entry_points";
license = licenses.bsd2;
maintainers = with maintainers; [ nixy ];
};
}