linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / poolsense / default.nix
blob0ffdf8952277e423699c17096167a2c67192644c
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchPypi
5 }:
7 buildPythonPackage rec {
8   pname = "poolsense";
9   version = "0.0.8";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "09y4fq0gdvgkfsykpxnvmfv92dpbknnq5v82spz43ak6hjnhgcyp";
14   };
16   propagatedBuildInputs = [ aiohttp ];
18   # Project has no tests
19   doCheck = false;
20   pythonImportsCheck = [ "poolsense" ];
22   meta = with lib; {
23     description = "Python module to access PoolSense device";
24     homepage = "https://github.com/haemishkyd/poolsense";
25     license = with licenses; [ mit ];
26     maintainers = with maintainers; [ fab ];
27   };