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

28 lines
662 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";
2020-04-08 22:03:05 +00:00
version = "5.3.1";
2018-02-03 11:12:06 +00:00
src = fetchPypi {
inherit pname version;
2020-04-08 22:03:05 +00:00
sha256 = "0pb4zvkfxfijkpgd1b86xjsqql97ssf1knbd1v53wkg1qm9cgsmq";
2018-02-03 11:12:06 +00:00
};
2019-03-14 09:50:49 +00:00
# force regeneration using Cython
postPatch = ''
rm ext/_yaml.c
'';
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 ];
};
}