Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi 2, betamax, pyyaml }: 3 4buildPythonPackage rec { 5 pname = "betamax-serializers"; 6 version = "0.2.1"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0ja9isbjmzzhxdj69s0kdsvw8nkp073w6an6a4liy5vk3fdl2p1l"; 11 }; 12 13 buildInputs = [ betamax pyyaml ]; 14 15 meta = with lib; { 16 homepage = "https://gitlab.com/betamax/serializers"; 17 description = "A set of third-party serializers for Betamax"; 18 license = licenses.asl20; 19 }; 20}