mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
55 lines
1,004 B
Nix
55 lines
1,004 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools-scm
|
|
, pyfiglet
|
|
, pillow
|
|
, wcwidth
|
|
, future
|
|
, mock
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asciimatics";
|
|
version = "1.14.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-FtIM5CIQtDTrBbpGns24KTrH7TwM4N1PcOMNctdgIic=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pyfiglet
|
|
pillow
|
|
wcwidth
|
|
future
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
nose
|
|
];
|
|
|
|
# tests require a pty emulator
|
|
# which is too complicated to setup here
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"asciimatics.effects"
|
|
"asciimatics.renderers"
|
|
"asciimatics.scene"
|
|
"asciimatics.screen"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Helps to create full-screen text UIs (from interactive forms to ASCII animations) on any platform";
|
|
homepage = "https://github.com/peterbrittain/asciimatics";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ cmcdragonkai ];
|
|
};
|
|
}
|