mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
930 B
Nix
37 lines
930 B
Nix
{ lib, buildPythonPackage, fetchPypi, EasyProcess, pathpy, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "entrypoint2";
|
|
version = "0.2.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "4ac1a8f08477d93282c422faa90875ce5edaa941e1f3fd410b95cb31d9f473a7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ];
|
|
|
|
pythonImportsCheck = [ "entrypoint2" ];
|
|
|
|
# argparse is part of the standardlib
|
|
prePatch = ''
|
|
substituteInPlace setup.py --replace "argparse" ""
|
|
'';
|
|
|
|
checkInputs = [ EasyProcess pathpy pytest ];
|
|
|
|
# 0.2.1 has incompatible pycache files included
|
|
# https://github.com/ponty/entrypoint2/issues/8
|
|
checkPhase = ''
|
|
rm -rf tests/__pycache__
|
|
pytest tests
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|