ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / plyplus / default.nix
blob4b9f1a9a0841f1140f154029403aa8959149c844
1 { lib, fetchPypi, buildPythonPackage, ply, isPy3k }:
2 buildPythonPackage rec {
3   pname = "PlyPlus";
4   version = "0.7.5";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp";
9   };
11   propagatedBuildInputs = [ ply ];
13   doCheck = !isPy3k;
15   meta = {
16     homepage = "https://github.com/erezsh/plyplus";
17     description = "A general-purpose parser built on top of PLY";
18     maintainers = with lib.maintainers; [ twey ];
19     license = lib.licenses.mit;
20   };