Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchhg 4}: 5 6buildPythonPackage rec { 7 pname = "ruamel-yaml-clib"; 8 version = "0.2.7"; 9 format = "setuptools"; 10 11 src = fetchhg { 12 url = "http://hg.code.sf.net/p/ruamel-yaml-clib/code"; 13 rev = version; 14 sha256 = "sha256-QNJyJWfCT8zEvrqI65zPlWIMSRZSoDwIAbFU48TfO4U="; 15 }; 16 17 # no tests 18 doCheck = false; 19 20 # circular dependency with ruamel-yaml 21 # pythonImportsCheck = [ "_ruamel_yaml" ]; 22 23 meta = with lib; { 24 description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order"; 25 homepage = "https://sourceforge.net/projects/ruamel-yaml-clib/"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ SuperSandro2000 ]; 28 }; 29}