Files
nixpkgs/pkgs/development/python-modules/oscscreen/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

32 lines
795 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "oscscreen";
version = "unstable-2023-03-23";
pyproject = true;
src = fetchFromGitHub {
owner = "outscale";
repo = "npyscreen";
rev = "e2a97e4a201e2d7d5de3ee033071a7f93592b422";
hash = "sha256-0Im1kVFa11AW+7Oe95XvkfxSlaux6bkKaHSQy6hJCN8=";
};
nativeBuildInputs = [ setuptools ];
pythonImportsCheck = [ "oscscreen" ];
meta = with lib; {
description = "Framework for developing console applications using Python and curses";
homepage = "https://github.com/outscale/npyscreen";
changelog = "https://github.com/outscale/npyscreen/blob/${src.rev}/CHANGELOG";
license = licenses.bsd2;
maintainers = with maintainers; [ nicolas-goudry ];
};
}