fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
56 lines
975 B
Nix
56 lines
975 B
Nix
{
|
|
lib,
|
|
attrdict,
|
|
buildPythonPackage,
|
|
cairosvg,
|
|
fetchPypi,
|
|
pillow,
|
|
pytestCheckHook,
|
|
pyyaml,
|
|
setuptools-scm,
|
|
six,
|
|
svgwrite,
|
|
xmldiff,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wavedrom";
|
|
version = "2.0.3.post3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-MntNXcpZPIElfCAv6lFvepCHR/sRUnw1nwNPW3r39Hs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = [
|
|
attrdict
|
|
pyyaml
|
|
svgwrite
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
cairosvg
|
|
pillow
|
|
pytestCheckHook
|
|
xmldiff
|
|
];
|
|
|
|
disabledTests = [
|
|
# Requires to clone a full git repository
|
|
"test_upstream"
|
|
];
|
|
|
|
pythonImportsCheck = [ "wavedrom" ];
|
|
|
|
meta = with lib; {
|
|
description = "WaveDrom compatible Python command line";
|
|
mainProgram = "wavedrompy";
|
|
homepage = "https://github.com/wallento/wavedrompy";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ airwoodix ];
|
|
};
|
|
}
|