mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
Merge pull request #324184 from pbsds/bump-wireviz-1719966539
wireviz: 0.3.2 -> 0.4
This commit is contained in:
commit
78a9336874
|
@ -5,12 +5,12 @@
|
|||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "wireviz";
|
||||
version = "0.3.2";
|
||||
version = "0.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-MBgX7dWOr3SorOJQjVlRGlSvL+A7Lg+gC1UoS3un9rU=";
|
||||
hash = "sha256-lFJG0jkE42h2boCxDzXfWPmKFc2Ycqx598wPhD/jaLM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -19,12 +19,17 @@ python3.pkgs.buildPythonApplication rec {
|
|||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
click
|
||||
graphviz
|
||||
pillow
|
||||
pyyaml
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "wireviz" ];
|
||||
pythonImportsCheck = [
|
||||
"wireviz"
|
||||
"wireviz.wireviz"
|
||||
"wireviz.wv_cli"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Easily document cables and wiring harnesses";
|
||||
|
|
Loading…
Reference in a new issue