precice-config-visualizer: use new SRI hash format
This commit is contained in:
parent
ed6560b2d1
commit
5384078178
1 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,7 @@
|
||||||
{ lib, python3Packages, fetchFromGitHub}:
|
{ lib
|
||||||
|
, python3Packages
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "config-visualizer";
|
pname = "config-visualizer";
|
||||||
|
@ -8,15 +11,16 @@ python3Packages.buildPythonApplication rec {
|
||||||
owner = "precice";
|
owner = "precice";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "60f2165f25352c8261f370dc4ceb64a8b422d4ec";
|
rev = "60f2165f25352c8261f370dc4ceb64a8b422d4ec";
|
||||||
sha256 = "sha256:0mqzp2qdvbqbxaczlvc9xxxdz6hclraznbmc08ldx11xwy8yknfr";
|
hash = "sha256-2dnpkec9hN4oAqwu+1WmDJrfeu+JbfqZ6guv3bC4H1c=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [ lxml pydot ];
|
propagatedBuildInputs = with python3Packages; [ lxml pydot ];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Small python tool for visualizing the preCICE xml configuration ";
|
|
||||||
homepage = "https://github.com/precice/config-visualizer";
|
homepage = "https://github.com/precice/config-visualizer";
|
||||||
|
description = "Small python tool for visualizing the preCICE xml configuration ";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = with maintainers; [ Scriptkiddi ];
|
maintainers = with maintainers; [ Scriptkiddi ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue