depot/third_party/nixpkgs/pkgs/development/python-modules/entrypoint2/default.nix

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 ];
};
}