My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/quantum-gateway/default.nix

48 lines
912 B

{ lib
, buildPythonPackage
, esprima
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, requests-mock
, setuptools-scm
, urllib3
}:
buildPythonPackage rec {
pname = "quantum-gateway";
version = "0.0.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "cisasteelersfan";
repo = "quantum_gateway";
rev = version;
sha256 = "f2LYOr9xJSfbA/1aHfll5lg7r05o855Zkkk9HuRamP8=";
};
propagatedBuildInputs = [
urllib3
esprima
requests
];
checkInputs = [
requests-mock
pytestCheckHook
];
pythonImportsCheck = [
"quantum_gateway"
];
meta = with lib; {
description = "Python library for interacting with Verizon Fios Quantum gateway devices";
homepage = "https://github.com/cisasteelersfan/quantum_gateway";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}