mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 00:24:47 +00:00
![Jörg Thalheim](/assets/img/avatar_default.png)
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
40 lines
847 B
Nix
40 lines
847 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
ipdb,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "cliche";
|
|
version = "0.10.108";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kootenpv";
|
|
repo = "cliche";
|
|
rev = "80a9ae2e90f4493880b669d5db51f1d4038589df"; # no tags
|
|
sha256 = "sha256-7/icSneLQzwdkRL/mS4RjsgnKa6YIVvGCmdS6pB6r5Y=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "ipdb == 0.13.9" "ipdb"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ ipdb ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "cliche" ];
|
|
|
|
meta = with lib; {
|
|
description = "Build a simple command-line interface from your functions :computer:";
|
|
mainProgram = "cliche";
|
|
homepage = "https://github.com/kootenpv/cliche";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|