mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
19 lines
496 B
Nix
19 lines
496 B
Nix
{ 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 ];
|
|
};
|
|
}
|