Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "avro-python3"; 5 version = "1.10.0"; 6 disabled = !isPy3k; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "a455c215540b1fceb1823e2a918e94959b54cb363307c97869aa46b5b55bde05"; 11 }; 12 13 doCheck = false; # No such file or directory: './run_tests.py 14 15 meta = with lib; { 16 broken = true; 17 description = "A serialization and RPC framework"; 18 homepage = "https://pypi.python.org/pypi/avro-python3/"; 19 license = licenses.asl20; 20 21 maintainers = [ maintainers.shlevy maintainers.timma ]; 22 }; 23}