depot/third_party/nixpkgs/pkgs/development/python-modules/fastentrypoints/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

18 lines
486 B
Nix

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