python3Packages.concord232: init at 0.15 (#434626)
This commit is contained in:
commit
4b81edcb1d
44
pkgs/development/python-modules/concord232/default.nix
Normal file
44
pkgs/development/python-modules/concord232/default.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
requests,
|
||||
stevedore,
|
||||
prettytable,
|
||||
pyserial,
|
||||
flask,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "concord232";
|
||||
version = "0.15";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JasonCarter80";
|
||||
repo = "concord232";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-qMHFOKuNuk4Z/FDNRqh1nsnA5vCW+9YXGK6d7Td5O5s=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
requests
|
||||
stevedore
|
||||
prettytable
|
||||
pyserial
|
||||
flask
|
||||
];
|
||||
|
||||
# Package has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "GE Concord 4 RS232 Serial Interface Library and Server";
|
||||
homepage = "https://github.com/JasonCarter80/concord232";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
}
|
@ -973,7 +973,8 @@
|
||||
];
|
||||
"concord232" =
|
||||
ps: with ps; [
|
||||
]; # missing inputs: concord232
|
||||
concord232
|
||||
];
|
||||
"coned" =
|
||||
ps: with ps; [
|
||||
];
|
||||
|
@ -2867,6 +2867,8 @@ self: super: with self; {
|
||||
|
||||
compressed-tensors = callPackage ../development/python-modules/compressed-tensors { };
|
||||
|
||||
concord232 = callPackage ../development/python-modules/concord232 { };
|
||||
|
||||
concurrent-log-handler = callPackage ../development/python-modules/concurrent-log-handler { };
|
||||
|
||||
conda = callPackage ../development/python-modules/conda { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user