depot/third_party/nixpkgs/pkgs/development/python-modules/saneyaml/default.nix
Default email 2189cff663 Project import generated by Copybara.
GitOrigin-RevId: 1fe6ed37fd9beb92afe90671c0c2a662a03463dd
2021-04-24 22:57:28 -05:00

41 lines
756 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, setuptools-scm
, pyyaml
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "saneyaml";
version = "0.5.2";
src = fetchPypi {
inherit pname version;
sha256 = "d6074f1959041342ab41d74a6f904720ffbcf63c94467858e0e22e17e3c43d41";
};
dontConfigure = true;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
pyyaml
];
checkInputs = [
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 = teams.determinatesystems.members;
};
}