My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/yamlordereddictloader/default.nix

31 lines
698 B

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, ordereddict
, pyyaml
}:
buildPythonPackage rec {
pname = "yamlordereddictloader";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "03h8wa6pzqjiw25s3jv9gydn77gs444mf31lrgvpgy53kswz0c3z";
};
propagatedBuildInputs = [ pyyaml ] ++ lib.optional (isPy27) ordereddict;
# no tests
doCheck = false;
pythonImportsCheck = [ "yamlordereddictloader" ];
meta = with lib; {
description = "YAML loader and dump for PyYAML allowing to keep keys order";
homepage = "https://github.com/fmenabe/python-yamlordereddictloader";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}