mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-09 06:43:36 +00:00
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
readchar,
|
|
colorama,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "cutie";
|
|
version = "0.3.2";
|
|
pyproject = true;
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kamik423";
|
|
repo = "cutie";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-Z9GNvTrCgb+EDqlhHcOjn78Pli0Uc1HuVN2FrjTQobs=";
|
|
};
|
|
|
|
# https://docs.python.org/3/whatsnew/3.12.html#whatsnew312-removed-imp
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace-fail "import imp" "import types" \
|
|
--replace-fail \
|
|
'cutie = imp.new_module("cutie")' \
|
|
'cutie = types.ModuleType("cutie")'
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
colorama
|
|
readchar
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "cutie" ];
|
|
|
|
meta = {
|
|
description = "Command line User Tools for Input Easification";
|
|
homepage = "https://github.com/kamik423/cutie";
|
|
changelog = "https://github.com/kamik423/cutie/releases/tag/${finalAttrs.src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
gigahawk
|
|
];
|
|
};
|
|
})
|