summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyyaml/default.nix
blob: a4918bf352dca68e8994ad4046e964a7d04554f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi, libyaml }:

buildPythonPackage rec {
  pname = "PyYAML";
  version = "3.12";

  src = fetchPypi {
    inherit pname version;
    sha256 = "592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab";
  };

  propagatedBuildInputs = [ libyaml ];

  meta = with lib; {
    description = "The next generation YAML parser and emitter for Python";
    homepage = https://github.com/yaml/pyyaml;
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}