pythonPackages.pyvcd: init at 0.1.4
This commit is contained in:
parent
8c468623b4
commit
31cd0f8060
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, setuptools_scm
|
||||||
|
, six
|
||||||
|
, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.1.4";
|
||||||
|
pname = "pyvcd";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0dv9wac5y5z9j54ypyc59csxdiy9ybpphw9ipxp1k8nfg65q9jxx";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ setuptools_scm ];
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python package for writing Value Change Dump (VCD) files";
|
||||||
|
homepage = https://github.com/SanDisk-Open-Source/pyvcd;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.sb0 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -698,6 +698,8 @@ in {
|
||||||
|
|
||||||
pyxml = disabledIf isPy3k (callPackage ../development/python-modules/pyxml{ });
|
pyxml = disabledIf isPy3k (callPackage ../development/python-modules/pyxml{ });
|
||||||
|
|
||||||
|
pyvcd = callPackage ../development/python-modules/pyvcd { };
|
||||||
|
|
||||||
pyvoro = callPackage ../development/python-modules/pyvoro { };
|
pyvoro = callPackage ../development/python-modules/pyvoro { };
|
||||||
|
|
||||||
relatorio = callPackage ../development/python-modules/relatorio { };
|
relatorio = callPackage ../development/python-modules/relatorio { };
|
||||||
|
|
Loading…
Reference in New Issue