depot/third_party/nixpkgs/pkgs/development/python-modules/entrypoints/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

36 lines
670 B
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, flit-core
, configparser
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "entrypoints";
version = "0.4";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-twbt2qkhihnrzWe1aBjwW7J1ibHKno15e3Sv+tTMrNQ=";
};
nativeBuildInputs = [
flit-core
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Discover and load entry points from installed packages";
homepage = "https://github.com/takluyver/entrypoints";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}