python311Packages.avidtools: init 0.1.1.2

Developer tools for AVID

https://github.com/avidml/avidtools
This commit is contained in:
Fabian Affolter 2023-12-09 17:24:29 +01:00
parent d625509445
commit 1ee8c8c461
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, datetime
, fetchPypi
, nvdlib
, pydantic
, pythonOlder
, setuptools
, typing
, typing-extensions
}:
buildPythonPackage rec {
pname = "avidtools";
version = "0.1.1.2";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-t+ohPjOBwY8i+g7VC30ehEu6SFIsn1SwGR/ICkV9blg=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
datetime
nvdlib
pydantic
typing
typing-extensions
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"avidtools"
];
meta = with lib; {
description = "Developer tools for AVID";
homepage = "https://github.com/avidml/avidtools";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -953,6 +953,8 @@ self: super: with self; {
avea = callPackage ../development/python-modules/avea { };
avidtools = callPackage ../development/python-modules/avidtools { };
avion = callPackage ../development/python-modules/avion { };
avro3k = callPackage ../development/python-modules/avro3k { };