Unverified Commit a83a3597 authored by GenericNerdyUsername's avatar GenericNerdyUsername Committed by Sandro Jäckel
Browse files

python3Packages.ipyxact: init at 0.3.2

parent dc1813ff
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ buildPythonPackage
, fetchFromGitHub
, lib
, pyyaml
, six
, lxml
}:

buildPythonPackage rec {
  pname = "ipyxact";
  version = "0.3.2";

  propagatedBuildInputs = [ pyyaml ];
  checkInputs = [ six lxml ];

  src = fetchFromGitHub {
    owner = "olofk";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-myD+NnqcxxaSAV7qZa8xqeciaiFqFePqIzd7sb/2GXA=";
  };

  pythonImportsCheck = [ "ipyxact" ];

  meta = with lib; {
    homepage = "https://github.com/olofk/ipyxact";
    description = "IP-XACT parser";
    maintainers = with maintainers; [ genericnerdyusername ];
    license = licenses.mit;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4959,6 +4959,8 @@ self: super: with self; {

  ipywidgets = callPackage ../development/python-modules/ipywidgets { };

  ipyxact = callPackage ../development/python-modules/ipyxact { };

  irc = callPackage ../development/python-modules/irc { };

  ircrobots = callPackage ../development/python-modules/ircrobots { };