depot/third_party/nixpkgs/pkgs/development/python-modules/entrypoint2/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
712 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
easyprocess,
path,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "entrypoint2";
version = "1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-/At/57IazatHpYWrlAfKflxPlstoiFddtrDOuR8OEFo=";
};
nativeCheckInputs = [
easyprocess
path
pytestCheckHook
];
pythonImportsCheck = [ "entrypoint2" ];
meta = with lib; {
description = "Easy to use command-line interface for python modules";
homepage = "https://github.com/ponty/entrypoint2/";
license = licenses.bsd2;
maintainers = with maintainers; [ austinbutler ];
};
}