mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
39 lines
741 B
Nix
39 lines
741 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, cython
|
||
|
, libyaml
|
||
|
, isPy27
|
||
|
, python
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "PyYAML";
|
||
|
version = "5.4.1.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "yaml";
|
||
|
repo = "pyyaml";
|
||
|
rev = version;
|
||
|
sha256 = "1v386gzdvsjg0mgix6v03rd0cgs9dl81qvn3m547849jm8r41dx8";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cython ];
|
||
|
|
||
|
buildInputs = [ libyaml ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
runHook preCheck
|
||
|
PYTHONPATH=""tests/lib":$PYTHONPATH" ${python.interpreter} -m test_all
|
||
|
runHook postCheck
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "yaml" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "The next generation YAML parser and emitter for Python";
|
||
|
homepage = "https://github.com/yaml/pyyaml";
|
||
|
license = licenses.mit;
|
||
|
};
|
||
|
}
|