wireviz: init at 0.3.2

This commit is contained in:
Pablo Ovelleiro Corral 2024-04-15 11:43:07 +02:00
parent b7ea13261a
commit 55c4ae6984
No known key found for this signature in database
GPG Key ID: 29E9A6ED72CCB334

View File

@ -0,0 +1,36 @@
{ lib
, python3
, fetchPypi
}:
python3.pkgs.buildPythonApplication rec {
pname = "wireviz";
version = "0.3.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-MBgX7dWOr3SorOJQjVlRGlSvL+A7Lg+gC1UoS3un9rU=";
};
nativeBuildInputs = [
python3.pkgs.setuptools
python3.pkgs.wheel
];
propagatedBuildInputs = with python3.pkgs; [
graphviz
pillow
pyyaml
];
pythonImportsCheck = [ "wireviz" ];
meta = with lib; {
description = "Easily document cables and wiring harnesses";
homepage = "https://pypi.org/project/wireviz/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ pinpox ];
mainProgram = "wireviz";
};
}