depot/third_party/nixpkgs/pkgs/development/python-modules/asciitree/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

31 lines
584 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "asciitree";
version = "0.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "mbr";
repo = "asciitree";
rev = version;
hash = "sha256-AaLDO27W6fGHGU11rRpBf5gg1we+9SS1MEJdFP2lPBw=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Draws ASCII trees";
homepage = "https://github.com/mbr/asciitree";
license = licenses.mit;
maintainers = [ ];
};
}