Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 32 lines 635 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, setuptools_scm 5, six 6, pytest }: 7 8buildPythonPackage rec { 9 version = "0.1.4"; 10 pname = "pyvcd"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0dv9wac5y5z9j54ypyc59csxdiy9ybpphw9ipxp1k8nfg65q9jxx"; 15 }; 16 17 buildInputs = [ setuptools_scm ]; 18 propagatedBuildInputs = [ six ]; 19 20 checkPhase = '' 21 py.test 22 ''; 23 24 checkInputs = [ pytest ]; 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 license = licenses.mit; 30 maintainers = [ maintainers.sb0 ]; 31 }; 32}