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";
|
2019-12-19 19:31:21 +00:00
|
|
|
version = "5.2";
|
2018-02-03 11:12:06 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 19:31:21 +00:00
|
|
|
sha256 = "c0ee8eca2c582d29c3c2ec6e2c4f703d1b7f1fb10bc72317355a746057e7346c";
|
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-01-02 19:09:44 +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;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|