pythonPackages.drawille: init at 0.1.0

This commit is contained in:
Norbert Melzer 2023-01-23 23:20:49 +01:00
parent f8c7a1312b
commit 332a06e011
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "drawille";
version = "0.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-t4nS8TWbEGKHibIbLfZZycPQxTiEzuJ7DYsa6Twi+8s=";
};
doCheck = false; # pypi package has no tests, git has no tags
pythonImportsCheck = [
"drawille"
];
meta = with lib; {
description = "Drawing in terminal with unicode braille characters";
homepage = "https://github.com/asciimoo/drawille";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ nobbz ];
platforms = platforms.all;
};
}

View file

@ -2814,6 +2814,8 @@ self: super: with self; {
dragonfly = callPackage ../development/python-modules/dragonfly { };
drawille = callPackage ../development/python-modules/drawille { };
dremel3dpy = callPackage ../development/python-modules/dremel3dpy { };
drf-jwt = callPackage ../development/python-modules/drf-jwt { };