ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / fastentrypoints / default.nix
blob7671feb359f8fba9233879abd8f478532cb759e1
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "fastentrypoints";
5   version = "0.12";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "02s1j8i2dzbpbwgq2a3fiqwm3cnmhii2qzc0k42l0rdxd4a4ya7z";
10   };
12   meta = with lib; {
13     description = "Makes entry_points specified in setup.py load more quickly";
14     homepage = "https://github.com/ninjaaron/fast-entry_points";
15     license = licenses.bsd2;
16     maintainers = with maintainers; [ nixy ];
17   };