about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/oyaml/default.nix
blob: e445086d0c76f7cfcb8fa8a293f670d8abf2f0d2 (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
30
31
32
33
34
35
36
37
38
39
40
41
{ buildPythonPackage
, fetchFromGitHub
, lib

# pythonPackages
, pytest
, pyyaml
}:

buildPythonPackage rec {
  pname = "oyaml";
  version = "0.9";

  src = fetchFromGitHub {
    owner = "wimglenn";
    repo = "oyaml";
    rev = "v${version}";
    sha256 = "13xjdym0p0jh9bvyjsbhi4yznlp68bamy3xi4w5wpcrzlcq6cfh9";
  };

  propagatedBuildInputs = [
    pyyaml
  ];

  checkInputs = [
    pytest
  ];

  checkPhase = ''
    pytest test_oyaml.py
  '';

  meta = {
    description = "Ordered YAML: drop-in replacement for PyYAML which preserves dict ordering";
    homepage = "https://github.com/wimglenn/oyaml";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      kamadorueda
    ];
  };
}