python3Packages.ipyxact: init at 0.3.2
This commit is contained in:
parent
dc1813ff77
commit
a83a3597cd
31
pkgs/development/python-modules/ipyxact/default.nix
Normal file
31
pkgs/development/python-modules/ipyxact/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user