nixpkgs/pkgs/development/python-modules/saneyaml/default.nix
2023-03-22 07:22:38 -07:00

42 lines
718 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, setuptools-scm
, pyyaml
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "saneyaml";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-sjCfeDZiPNbbkyV067xD4/ZcdD52NReeZL7ssNFibkQ=";
};
dontConfigure = true;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
pyyaml
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"saneyaml"
];
meta = with lib; {
description = "A PyYaml wrapper with sane behaviour to read and write readable YAML safely";
homepage = "https://github.com/nexB/saneyaml";
license = licenses.asl20;
maintainers = [ ];
};
}