My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/poolsense/default.nix

28 lines
598 B

{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "poolsense";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-WCyuhk77QNJAiuzccrb2u0mfc81LYrYSSq9atgO0LdE=";
};
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 ];
};
}