5ee7d17afc
The project had been renamed after 12.5.0 back in 2020, which is why we didn't receive further updates. Created an alias and renamed all existing references.
22 lines
608 B
Nix
22 lines
608 B
Nix
{ lib, buildPythonPackage, fetchPypi, EasyProcess, path, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "entrypoint2";
|
|
version = "1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-Z+kG9q2VjYP0i07ewo192CZw6SYZiPa0prY6vJ+zvlY=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "entrypoint2" ];
|
|
|
|
checkInputs = [ EasyProcess path pytestCheckHook ];
|
|
|
|
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 ];
|
|
};
|
|
}
|