summary refs log tree commit diff
path: root/pkgs/development/python-modules/ruamel-yaml-clib/default.nix
blob: 143452274abb222d4a0968d088edb30878a77c1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchhg
}:

buildPythonPackage rec {
  pname = "ruamel-yaml-clib";
  version = "0.2.6";
  format = "setuptools";

  src = fetchhg {
    url = "http://hg.code.sf.net/p/ruamel-yaml-clib/code";
    rev = version;
    sha256 = "sha256-mpkh9JhYKRX47jfKprjt1Vpm9DMz8LcWzkotJ+/xoxY=";
  };

  # no tests
  doCheck = false;

  # circular depedency with ruamel-yaml
  # pythonImportsCheck = [ "_ruamel_yaml" ];

  meta = with lib; {
    description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order";
    homepage = "https://sourceforge.net/projects/ruamel-yaml-clib/";
    license = licenses.mit;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}