44 lines
806 B
Nix
44 lines
806 B
Nix
|
{ lib
|
||
|
, authlib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, httpx
|
||
|
, pytest-asyncio
|
||
|
, pytestCheckHook
|
||
|
, pythonOlder
|
||
|
, pytz
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pylitterbot";
|
||
|
version = "2021.3.1";
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "natekspencer";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-w2iyzCYoma8zQsXGIQnpgijDHNqmlvCnbeyF7PmLz9c=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
authlib
|
||
|
httpx
|
||
|
pytz
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
pytest-asyncio
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "pylitterbot" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python package for controlling a Litter-Robot";
|
||
|
homepage = "https://github.com/natekspencer/pylitterbot";
|
||
|
license = with licenses; [ mit ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|