1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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