1{ lib
2, buildPythonPackage
3, fetchPypi
4, pyyaml
5, unidecode
6}:
7
8buildPythonPackage rec {
9 pname = "pyaml";
10 version = "21.10.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "c6519fee13bf06e3bb3f20cacdea8eba9140385a7c2546df5dbae4887f768383";
15 };
16
17 propagatedBuildInputs = [
18 pyyaml
19 ];
20
21 checkInputs = [
22 unidecode
23 ];
24
25 pythonImportsCheck = [ "pyaml" ];
26
27 meta = with lib; {
28 description = "PyYAML-based module to produce pretty and readable YAML-serialized data";
29 homepage = "https://github.com/mk-fg/pretty-yaml";
30 license = licenses.wtfpl;
31 maintainers = with maintainers; [ ];
32 };
33}