python3Packages.oyaml: 1.0 -> unstable-2021-12-03

This commit is contained in:
Fabian Affolter 2022-01-10 20:23:19 +01:00
parent d36d401087
commit 7a8b98ee8d

View File

@ -1,21 +1,25 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchFromGitHub
, lib
# pythonPackages
, pytest
# pythonPackages
, pytestCheckHook
, pythonOlder
, pyyaml
}:
buildPythonPackage rec {
pname = "oyaml";
version = "1.0";
version = "unstable-2021-12-03";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "wimglenn";
repo = "oyaml";
rev = "v${version}";
sha256 = "0qkj8g87drvjqiqqmz36gyqiczdfcfv8zk96kkifzk4f9dl5f02j";
rev = "d0195070d26bd982f1e4e604bded5510dd035cd7";
hash = "sha256-1rSEhiULlAweLDqUFX+JBFxe3iW9kNlRA2zjcG8MYSg=";
};
propagatedBuildInputs = [
@ -23,19 +27,17 @@ buildPythonPackage rec {
];
checkInputs = [
pytest
pytestCheckHook
];
checkPhase = ''
pytest test_oyaml.py
'';
pythonImportsCheck = [
"oyaml"
];
meta = {
description = "Ordered YAML: drop-in replacement for PyYAML which preserves dict ordering";
meta = with lib; {
description = "Drop-in replacement for PyYAML which preserves dict ordering";
homepage = "https://github.com/wimglenn/oyaml";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
kamadorueda
];
license = licenses.mit;
maintainers = with maintainers; [ kamadorueda ];
};
}