python311Packages.sisyphus-control: init at 3.1.3
This commit is contained in:
parent
a175ac6ba8
commit
1a5830b947
2 changed files with 58 additions and 0 deletions
56
pkgs/development/python-modules/sisyphus-control/default.nix
Normal file
56
pkgs/development/python-modules/sisyphus-control/default.nix
Normal file
|
@ -0,0 +1,56 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, netifaces
|
||||
, python-engineio
|
||||
, python-socketio
|
||||
, pythonOlder
|
||||
, pythonRelaxDepsHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sisyphus-control";
|
||||
version = "3.1.3";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jkeljo";
|
||||
repo = "sisyphus-control";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-FbZWvsm2NT9a7TgHKWh/LHPsse6NBLK2grlOtHDbV2Y=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"python-engineio"
|
||||
"python-socketio"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
netifaces
|
||||
python-engineio
|
||||
python-socketio
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sisyphus_control"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Control your Sisyphus Kinetic Art Table";
|
||||
homepage = "https://github.com/jkeljo/sisyphus-control";
|
||||
changelog = "https://github.com/jkeljo/sisyphus-control/blob/${version}/CHANGELOG.rst";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -11229,6 +11229,8 @@ self: super: with self; {
|
|||
|
||||
sipyco = callPackage ../development/python-modules/sipyco { };
|
||||
|
||||
sisyphus-control = callPackage ../development/python-modules/sisyphus-control { };
|
||||
|
||||
siuba = callPackage ../development/python-modules/siuba { };
|
||||
|
||||
six = callPackage ../development/python-modules/six { };
|
||||
|
|
Loading…
Reference in a new issue