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

28 lines
672 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";
2019-07-20 03:29:25 +01:00
version = "5.1.1";
2018-02-03 11:12:06 +00:00
src = fetchPypi {
inherit pname version;
2019-07-20 03:29:25 +01:00
sha256 = "b4bb4d3f5e232425e25dda21c070ce05168a786ac9eda43768ab7f3ac2770955";
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;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}