Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 22 lines 594 B view raw
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 description = "A serialization and RPC framework"; 17 homepage = "https://pypi.python.org/pypi/avro-python3/"; 18 license = licenses.asl20; 19 20 maintainers = [ maintainers.shlevy maintainers.timma ]; 21 }; 22}