nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 34 lines 688 B view raw
1{ 2 lib, 3 aiohttp, 4 buildPythonPackage, 5 fetchPypi, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "asyncpysupla"; 11 version = "0.0.5"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-sRw4qAkHPIIc27FtxIe2vOvSK9PPBJYOZzDLgGYapDc="; 17 }; 18 19 build-system = [ setuptools ]; 20 21 dependencies = [ aiohttp ]; 22 23 # Tests require API credentials and network access 24 doCheck = false; 25 26 pythonImportsCheck = [ "asyncpysupla" ]; 27 28 meta = { 29 description = "Simple Supla's OpenAPI async wrapper"; 30 homepage = "https://github.com/mwegrzynek/asyncpysupla"; 31 license = lib.licenses.asl20; 32 maintainers = [ lib.maintainers.jamiemagee ]; 33 }; 34}