python3Packages.poolsense: init at 0.0.8
This commit is contained in:
parent
b451286b1f
commit
113848213f
28
pkgs/development/python-modules/poolsense/default.nix
Normal file
28
pkgs/development/python-modules/poolsense/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "poolsense";
|
||||
version = "0.0.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "09y4fq0gdvgkfsykpxnvmfv92dpbknnq5v82spz43ak6hjnhgcyp";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ aiohttp ];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "poolsense" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to access PoolSense device";
|
||||
homepage = "https://github.com/haemishkyd/poolsense";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4864,6 +4864,8 @@ in {
|
||||
|
||||
pooch = callPackage ../development/python-modules/pooch { };
|
||||
|
||||
poolsense = callPackage ../development/python-modules/poolsense { };
|
||||
|
||||
poppler-qt5 = callPackage ../development/python-modules/poppler-qt5 {
|
||||
inherit (pkgs.qt5) qtbase;
|
||||
inherit (pkgs.libsForQt5) poppler;
|
||||
|
Loading…
Reference in New Issue
Block a user