depot/third_party/nixpkgs/pkgs/development/python-modules/wavedrom/default.nix
Default email 4cb23072fc Project import generated by Copybara.
GitOrigin-RevId: 6d8215281b2f87a5af9ed7425a26ac575da0438f
2022-01-20 00:45:15 +01:00

58 lines
960 B
Nix

{ lib
, attrdict
, buildPythonPackage
, cairosvg
, fetchPypi
, pillow
, pytestCheckHook
, setuptools-scm
, six
, svgwrite
, xmldiff
}:
buildPythonPackage rec {
pname = "wavedrom";
version = "2.0.3.post2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-I5s0Nf8RawkAfVUX7tdV/IWRiRtycaHNQNueQAwCRI0=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
attrdict
svgwrite
six
];
checkInputs = [
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";
homepage = "https://github.com/wallento/wavedrompy";
license = licenses.mit;
maintainers = with maintainers; [ airwoodix ];
};
}