567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
27 lines
559 B
Nix
27 lines
559 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "npyscreen";
|
|
version = "4.10.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0vhjwn0dan3zmffvh80dxb4x67jysvvf1imp6pk4dsfslpwy0bk2";
|
|
};
|
|
|
|
# Tests are outdated
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Framework for developing console applications using Python and curses";
|
|
homepage = "https://www.npcole.com/npyscreen/";
|
|
maintainers = with lib.maintainers; [ dump_stack ];
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|