fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
687 B
Nix
37 lines
687 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
pyyaml,
|
|
six,
|
|
lxml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipyxact";
|
|
version = "0.3.2";
|
|
format = "setuptools";
|
|
|
|
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";
|
|
mainProgram = "ipxact2v";
|
|
maintainers = with maintainers; [ genericnerdyusername ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|