pythonPackages.pyvcd: 0.1.6 -> 0.1.7

This commit is contained in:
Emily 2020-02-08 16:09:44 +00:00 committed by Austin Seipp
parent ff819cdd12
commit bcf081719b

View File

@ -3,15 +3,16 @@
, fetchPypi , fetchPypi
, setuptools_scm , setuptools_scm
, six , six
, pytest }: , pytest
}:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.1.6"; version = "0.1.7";
pname = "pyvcd"; pname = "pyvcd";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "285fcd96c3ee482e7b222bdd01d5dd19c2f5a0ad9b8e950baa98d386a2758c8f"; sha256 = "1ixpdl0qiads81h8s9h9r9z0cyc9dlmvi01nfjggxixvbb17305y";
}; };
buildInputs = [ setuptools_scm ]; buildInputs = [ setuptools_scm ];
@ -26,7 +27,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python package for writing Value Change Dump (VCD) files"; description = "Python package for writing Value Change Dump (VCD) files";
homepage = https://github.com/SanDisk-Open-Source/pyvcd; homepage = https://github.com/SanDisk-Open-Source/pyvcd;
changelog = "https://github.com/SanDisk-Open-Source/pyvcd/blob/${version}/CHANGELOG.rst";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.sb0 ]; maintainers = [ maintainers.sb0 maintainers.emily ];
}; };
} }