Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 536 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pyyaml 5, unidecode 6}: 7 8buildPythonPackage rec { 9 pname = "pyaml"; 10 version = "20.4.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "29a5c2a68660a799103d6949167bd6c7953d031449d08802386372de1db6ad71"; 15 }; 16 17 propagatedBuildInputs = [ pyyaml ]; 18 19 checkInputs = [ unidecode ]; 20 21 meta = { 22 description = "PyYAML-based module to produce pretty and readable YAML-serialized data"; 23 homepage = "https://github.com/mk-fg/pretty-yaml"; 24 license = lib.licenses.wtfpl; 25 }; 26}