fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
712 B
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 ];
|
|
};
|
|
}
|