python3Packages.pymyq: init at 2.0.14
This commit is contained in:
parent
b451286b1f
commit
b49c22a6c2
36
pkgs/development/python-modules/pymyq/default.nix
Normal file
36
pkgs/development/python-modules/pymyq/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, aiodns
|
||||
, aiohttp
|
||||
, async-timeout
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pymyq";
|
||||
version = "2.0.14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "arraylabs";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "18825b9c6qk4zcvva79hpg6098z4zqxyapnqmjsli23npw0zh67w";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiodns
|
||||
aiohttp
|
||||
async-timeout
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pymyq" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python wrapper for MyQ API";
|
||||
homepage = "https://github.com/arraylabs/pymyq";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -5524,6 +5524,8 @@ in {
|
||||
|
||||
PyMVGLive = callPackage ../development/python-modules/pymvglive { };
|
||||
|
||||
pymyq = callPackage ../development/python-modules/pymyq { };
|
||||
|
||||
pymysql = callPackage ../development/python-modules/pymysql { };
|
||||
|
||||
pymysqlsa = callPackage ../development/python-modules/pymysqlsa { };
|
||||
|
Loading…
Reference in New Issue
Block a user