nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at r-updates 39 lines 806 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 requests, 6 requests-oauthlib, 7 setuptools, 8}: 9 10buildPythonPackage rec { 11 pname = "homeconnect"; 12 version = "0.8.0"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-W475a+TlGiKRR1EDYiFVmApmQfmft85iBQLRnbEmcuA="; 18 }; 19 20 build-system = [ setuptools ]; 21 22 dependencies = [ 23 requests 24 requests-oauthlib 25 ]; 26 27 # Project has no tests 28 doCheck = false; 29 30 pythonImportsCheck = [ "homeconnect" ]; 31 32 meta = { 33 description = "Python client for the BSH Home Connect REST API"; 34 homepage = "https://github.com/DavidMStraub/homeconnect"; 35 changelog = "https://github.com/DavidMStraub/homeconnect/releases/tag/v${version}"; 36 license = lib.licenses.mit; 37 maintainers = with lib.maintainers; [ fab ]; 38 }; 39}