Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 29 lines 545 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "wyoming"; 8 version = "0.0.1"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-EIUbKL8DNFNNGmLRcu12mlw4H+gAHmCUw09eLG0s8+M="; 14 }; 15 16 pythonImportsCheck = [ 17 "wyoming" 18 ]; 19 20 # no tests 21 doCheck = false; 22 23 meta = with lib; { 24 description = "Protocol for Rhasspy Voice Assistant"; 25 homepage = "https://pypi.org/project/wyoming/"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ hexa ]; 28 }; 29}