at 23.05-pre 783 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5, setuptools-scm 6, six 7, pytestCheckHook 8}: 9 10buildPythonPackage rec { 11 version = "0.3.0"; 12 pname = "pyvcd"; 13 disabled = pythonOlder "3.6"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "ec4d9198bd20f9e07d78f6558ff8bcd45b172ee332e7e8a4588727eeb6a362bc"; 18 }; 19 20 buildInputs = [ setuptools-scm ]; 21 22 propagatedBuildInputs = [ six ]; 23 24 checkInputs = [ pytestCheckHook ]; 25 26 meta = with lib; { 27 description = "Python package for writing Value Change Dump (VCD) files"; 28 homepage = "https://github.com/SanDisk-Open-Source/pyvcd"; 29 changelog = "https://github.com/SanDisk-Open-Source/pyvcd/blob/${version}/CHANGELOG.rst"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ sb0 emily ]; 32 }; 33}