python3Packages.ipyxact: init at 0.3.2

This commit is contained in:
GenericNerdyUsername 2023-01-27 00:49:32 +00:00 committed by Sandro Jäckel
parent dc1813ff77
commit a83a3597cd
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ 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;
};
}

View file

@ -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 { };