pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / poolsense / default.nix
blobfb69913c6bc15f20c56460b5b90e941ed7d014a6
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchPypi,
6 }:
8 buildPythonPackage rec {
9   pname = "poolsense";
10   version = "0.1.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-WCyuhk77QNJAiuzccrb2u0mfc81LYrYSSq9atgO0LdE=";
16   };
18   propagatedBuildInputs = [ aiohttp ];
20   # Project has no tests
21   doCheck = false;
22   pythonImportsCheck = [ "poolsense" ];
24   meta = with lib; {
25     description = "Python module to access PoolSense device";
26     homepage = "https://github.com/haemishkyd/poolsense";
27     license = with licenses; [ mit ];
28     maintainers = with maintainers; [ fab ];
29   };