nixpkgs/pkgs/development/python-modules/entrypoint2/default.nix
Martin Weinelt 5ee7d17afc python3Packages.path: rename from path.py; 12.0.1 -> 16.4.0
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.
2022-04-15 01:39:54 +02:00

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