summary refs log tree commit diff
path: root/pkgs/development/python-modules/fastentrypoints/default.nix
blob: e2e0a4d4d92e6da706306e8d30dd95109f6f1f32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "fastentrypoints";
  version = "0.12";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02s1j8i2dzbpbwgq2a3fiqwm3cnmhii2qzc0k42l0rdxd4a4ya7z";
  };

  meta = with stdenv.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 ];
  };
}