python3Packages.dynalite-devices: init at 0.1.46

This commit is contained in:
Robert Schütz 2022-02-19 02:54:48 +00:00
parent de43d26955
commit b148e12e44
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, asynctest
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "dynalite-devices";
version = "0.1.46";
src = fetchFromGitHub {
owner = "ziv1234";
repo = "python-dynalite-devices";
rev = "v0.46"; # https://github.com/ziv1234/python-dynalite-devices/issues/2
hash = "sha256-Fju2JpFkQBCbOln7r3L+crv82TI2SkdPJ1oaK7PEifo=";
};
postPatch = ''
sed -i '/^addopts/d' setup.cfg
'';
checkInputs = [
asynctest
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "dynalite_devices_lib" ];
meta = with lib; {
description = "An unofficial Dynalite DyNET interface creating devices";
homepage = "https://github.com/ziv1234/python-dynalite-devices";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -2488,6 +2488,8 @@ in {
dyn = callPackage ../development/python-modules/dyn { }; dyn = callPackage ../development/python-modules/dyn { };
dynalite-devices = callPackage ../development/python-modules/dynalite-devices { };
dynd = callPackage ../development/python-modules/dynd { }; dynd = callPackage ../development/python-modules/dynd { };
easydict = callPackage ../development/python-modules/easydict { }; easydict = callPackage ../development/python-modules/easydict { };