biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / entrypoints / default.nix
blob5277106f01d236772a8a435239d71f37625177ba
2   lib,
3   buildPythonPackage,
4   pythonOlder,
5   fetchPypi,
6   flit-core,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "entrypoints";
12   version = "0.4";
13   format = "pyproject";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-twbt2qkhihnrzWe1aBjwW7J1ibHKno15e3Sv+tTMrNQ=";
20   };
22   nativeBuildInputs = [ flit-core ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   meta = with lib; {
27     description = "Discover and load entry points from installed packages";
28     homepage = "https://github.com/takluyver/entrypoints";
29     license = licenses.mit;
30     maintainers = [ ];
31   };