biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pypoolstation / default.nix
blob14e2c906f9a5e8d8bf4ad6c0727ec79953429bda
2   lib,
3   aiohttp,
4   backoff,
5   buildPythonPackage,
6   fetchPypi,
7   importlib-metadata,
8   poetry-core,
9   pythonOlder,
12 buildPythonPackage rec {
13   pname = "pypoolstation";
14   version = "0.5.6";
15   format = "pyproject";
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-E5/Z7TgIZlbIDB9I+DJI812ce8ctidDAXGCHBFzk7F8=";
22   };
24   nativeBuildInputs = [ poetry-core ];
26   propagatedBuildInputs = [
27     aiohttp
28     backoff
29     importlib-metadata
30   ];
32   # Project has no tests
33   doCheck = false;
35   pythonImportsCheck = [ "pypoolstation" ];
37   meta = with lib; {
38     description = "Python library to interact the the Poolstation platform";
39     homepage = "https://github.com/cibernox/PyPoolstation";
40     license = licenses.mit;
41     maintainers = with maintainers; [ fab ];
42   };