about summary refs log tree commit diff
path: root/pkgs/development/python-modules/oyaml
diff options
context:
space:
mode:
authorKevin Amado <kamadorueda@gmail.com>2019-12-28 03:59:19 -0500
committerKevin Amado <kamadorueda@gmail.com>2020-01-03 17:56:41 -0500
commit4f8eba122ad4677884be3dd02e41e480d5849546 (patch)
tree8179b7ef94b74add26a7499f896a33e589db351c /pkgs/development/python-modules/oyaml
parent8b2b1d125db6fb1f0193005023721ef59f6a1fd1 (diff)
pythonPackages.oyaml: init at 0.9
Diffstat (limited to 'pkgs/development/python-modules/oyaml')
-rw-r--r--pkgs/development/python-modules/oyaml/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/oyaml/default.nix b/pkgs/development/python-modules/oyaml/default.nix
new file mode 100644
index 0000000000000..e445086d0c76f
--- /dev/null
+++ b/pkgs/development/python-modules/oyaml/default.nix
@@ -0,0 +1,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
+    ];
+  };
+}