mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
pythonPackages.pyvcd: init at 0.1.4
This commit is contained in:
parent
8c468623b4
commit
31cd0f8060
2 changed files with 34 additions and 0 deletions
32
pkgs/development/python-modules/pyvcd/default.nix
Normal file
32
pkgs/development/python-modules/pyvcd/default.nix
Normal file
|
@ -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{ });
|
||||
|
||||
pyvcd = callPackage ../development/python-modules/pyvcd { };
|
||||
|
||||
pyvoro = callPackage ../development/python-modules/pyvoro { };
|
||||
|
||||
relatorio = callPackage ../development/python-modules/relatorio { };
|
||||
|
|
Loading…
Reference in a new issue