1{ lib, buildPythonPackage, fetchPypi, libyaml }:
2
3buildPythonPackage rec {
4 pname = "PyYAML";
5 version = "3.13";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf";
10 };
11
12 propagatedBuildInputs = [ libyaml ];
13
14 meta = with lib; {
15 description = "The next generation YAML parser and emitter for Python";
16 homepage = https://github.com/yaml/pyyaml;
17 license = licenses.mit;
18 maintainers = with maintainers; [ dotlambda ];
19 };
20}