nixpkgs/pkgs/development/python-modules/pyyaml/default.nix

23 lines
595 B
Nix
Raw Normal View History

2019-03-14 09:50:49 +00:00
{ lib, buildPythonPackage, fetchPypi, cython, libyaml, buildPackages }:
2018-02-03 11:12:06 +00:00
buildPythonPackage rec {
pname = "PyYAML";
2021-01-22 18:40:31 +00:00
version = "5.4.1";
2018-02-03 11:12:06 +00:00
src = fetchPypi {
inherit pname version;
2021-01-22 18:40:31 +00:00
sha256 = "607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e";
2018-02-03 11:12:06 +00:00
};
2019-03-14 09:50:49 +00:00
nativeBuildInputs = [ cython buildPackages.stdenv.cc ];
buildInputs = [ libyaml ];
2018-02-03 11:12:06 +00:00
meta = with lib; {
description = "The next generation YAML parser and emitter for Python";
homepage = "https://github.com/yaml/pyyaml";
2018-02-03 11:12:06 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}