Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 mashumaro, 6 orjson, 7 aiohttp, 8 yarl, 9 setuptools, 10}: 11 12buildPythonPackage rec { 13 pname = "asyncarve"; 14 version = "0.1.1"; 15 pyproject = true; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-5h56Sr0kPLrNPU70W90WsjmWax/N90dRMJ6lI5Mg86E="; 20 }; 21 22 build-system = [ setuptools ]; 23 24 dependencies = [ 25 mashumaro 26 orjson 27 aiohttp 28 yarl 29 ]; 30 31 # No tests in repo 32 doCheck = false; 33 34 pythonImportsCheck = [ "asyncarve" ]; 35 36 meta = with lib; { 37 description = "Simple Arve library"; 38 homepage = "https://github.com/arvetech/asyncarve"; 39 license = with licenses; [ mit ]; 40 maintainers = with maintainers; [ pyrox0 ]; 41 }; 42}