mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
python311Packages.pyyardian: init at 1.1.1
Module for interacting with the Yardian irrigation controller https://github.com/h3l1o5/pyyardian
This commit is contained in:
parent
3a388f757b
commit
7f2d3ed845
46
pkgs/development/python-modules/pyyardian/default.nix
Normal file
46
pkgs/development/python-modules/pyyardian/default.nix
Normal file
@ -0,0 +1,46 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, pythonOlder
|
||||
, wheel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyyardian";
|
||||
version = "1.1.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "h3l1o5";
|
||||
repo = "pyyardian";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-dnHHRGt3TsWJb6tzx+i1gb9hkLJYPVdCt92UGKuO6Mg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
];
|
||||
|
||||
# Tests require network access
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyyardian"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module for interacting with the Yardian irrigation controller";
|
||||
homepage = "https://github.com/h3l1o5/pyyardian";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -11741,6 +11741,8 @@ self: super: with self; {
|
||||
|
||||
pyyaml-include = callPackage ../development/python-modules/pyyaml-include { };
|
||||
|
||||
pyyardian = callPackage ../development/python-modules/pyyardian { };
|
||||
|
||||
pyzerproc = callPackage ../development/python-modules/pyzerproc { };
|
||||
|
||||
pyzmq = callPackage ../development/python-modules/pyzmq { };
|
||||
|
Loading…
Reference in New Issue
Block a user