mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.drawille: init at 0.1.0
This commit is contained in:
parent
f8c7a1312b
commit
332a06e011
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/drawille/default.nix
Normal file
30
pkgs/development/python-modules/drawille/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue