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

22 lines
540 B
Nix
Raw Normal View History

{ stdenv, fetchurl, buildPythonPackage, appdirs }:
buildPythonPackage rec {
pname = "rply";
name = "${pname}-${version}";
2017-11-01 10:51:50 +01:00
version = "0.7.5";
src = fetchurl {
url = "mirror://pypi/r/rply/${name}.tar.gz";
2017-11-01 10:51:50 +01:00
sha256 = "0lv428895zxsz43968qx0q9bimwqnfykndz4dpjbq515w2gvzhjh";
};
buildInputs = [ appdirs ];
meta = with stdenv.lib; {
description = "A python Lex/Yacc that works with RPython";
homepage = https://github.com/alex/rply;
license = licenses.bsd3;
maintainers = with maintainers; [ nixy ];
};
}