linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyyaml / default.nix
blob93cfad78d50e8ab5b7bf4794c61644f12c286cf5
1 { lib, buildPythonPackage, fetchPypi, cython, libyaml, buildPackages }:
3 buildPythonPackage rec {
4   pname = "PyYAML";
5   version = "5.4.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e";
10   };
12   nativeBuildInputs = [ cython buildPackages.stdenv.cc ];
14   buildInputs = [ libyaml ];
16   meta = with lib; {
17     description = "The next generation YAML parser and emitter for Python";
18     homepage = "https://github.com/yaml/pyyaml";
19     license = licenses.mit;
20     maintainers = with maintainers; [ dotlambda ];
21   };