mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-18 06:31:15 +00:00
python3Packages.hegel-ip-client: init at 0.1.4
This commit is contained in:
34
pkgs/development/python-modules/hegel-ip-client/default.nix
Normal file
34
pkgs/development/python-modules/hegel-ip-client/default.nix
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "hegel-ip-client";
|
||||
version = "0.1.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "boazca";
|
||||
repo = "hegel-ip-client";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-IKOtZ6mxbFvH1cLT45j/OD3OzAwy6vmtdF584LS5M7A=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "hegel_ip_client" ];
|
||||
|
||||
meta = {
|
||||
description = "Python client library for Hegel amplifiers";
|
||||
homepage = "https://github.com/boazca/hegel-ip-client";
|
||||
changelog = "https://github.com/boazca/hegel-ip-client/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
})
|
||||
@@ -6958,6 +6958,8 @@ self: super: with self; {
|
||||
|
||||
hebg = callPackage ../development/python-modules/hebg { };
|
||||
|
||||
hegel-ip-client = callPackage ../development/python-modules/hegel-ip-client { };
|
||||
|
||||
helion = callPackage ../development/python-modules/helion { };
|
||||
|
||||
helium = callPackage ../development/python-modules/helium { };
|
||||
|
||||
Reference in New Issue
Block a user