python3Packages.regenmaschine: init at 3.1.1
This commit is contained in:
parent
aa4a14b7ad
commit
ea4de61c49
51
pkgs/development/python-modules/regenmaschine/default.nix
Normal file
51
pkgs/development/python-modules/regenmaschine/default.nix
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, aresponses
|
||||||
|
, asynctest
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
|
, pytest-aiohttp
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytest-cov
|
||||||
|
, pytest-mock
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "regenmaschine";
|
||||||
|
version = "3.1.1";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bachya";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0m6i7vspp8ssdk2k32kznql1j8gkp300kzb7pk67hzvpijdy3mca";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ poetry-core ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ aiohttp ];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
aresponses
|
||||||
|
asynctest
|
||||||
|
pytest-aiohttp
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-cov
|
||||||
|
pytest-mock
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "regenmaschine" ];
|
||||||
|
|
||||||
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library for interacting with RainMachine smart sprinkler controllers";
|
||||||
|
homepage = "https://github.com/bachya/regenmaschine";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -6565,6 +6565,8 @@ in {
|
|||||||
|
|
||||||
reflink = callPackage ../development/python-modules/reflink { };
|
reflink = callPackage ../development/python-modules/reflink { };
|
||||||
|
|
||||||
|
regenmaschine = callPackage ../development/python-modules/regenmaschine { };
|
||||||
|
|
||||||
regex = callPackage ../development/python-modules/regex { };
|
regex = callPackage ../development/python-modules/regex { };
|
||||||
|
|
||||||
regional = callPackage ../development/python-modules/regional { };
|
regional = callPackage ../development/python-modules/regional { };
|
||||||
|
Loading…
Reference in New Issue
Block a user